<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="pingback" href="http://growthli.com/xmlrpc.php" />
<!--[if lt IE 9]>
	<script src="http://growthli.com/wp-content/themes/bb-theme/js/html5shiv.js"></script>
	<script src="http://growthli.com/wp-content/themes/bb-theme/js/respond.min.js"></script>
<![endif]-->
<title>Harvey Help &#8211; Growthli</title>
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Growthli &raquo; Feed" href="https://growthli.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Growthli &raquo; Comments Feed" href="https://growthli.com/comments/feed/" />
		<script type="text/javascript">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.4\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.4\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/growthli.com\/wp-includes\/js\/wp-emoji.js?ver=4.9.4","twemoji":"http:\/\/growthli.com\/wp-includes\/js\/twemoji.js?ver=4.9.4"}};
			( function( window, document, settings ) {
	var src, ready, ii, tests;

	/*
	 * Create a canvas element for testing native browser support
	 * of emoji.
	 */
	var canvas = document.createElement( 'canvas' );
	var context = canvas.getContext && canvas.getContext( '2d' );

	/**
	 * Check if two sets of Emoji characters render the same.
	 *
	 * @param set1 array Set of Emoji characters.
	 * @param set2 array Set of Emoji characters.
	 * @returns {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( set1, set2 ) {
		var stringFromCharCode = String.fromCharCode;

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 );
		var rendered1 = canvas.toDataURL();

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 );
		var rendered2 = canvas.toDataURL();

		return rendered1 === rendered2;
	}

	/**
	 * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph
	 * made of two characters, so some browsers (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @param type {String} Whether to test for support of "flag" or "emoji".
	 * @return {Boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var isIdentical;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		switch ( type ) {
			case 'flag':
				/*
				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
				 * so gives us an easy test for full support.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 55356, 56826, 55356, 56819 ],
					[ 55356, 56826, 8203, 55356, 56819 ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for English flag compatibility. England is a country in the United Kingdom, it
				 * does not have a two letter locale code but rather an five letter sub-division code.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447 ],
					[ 55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447 ]
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Emoji allows people of all gender levitate and so does WordPress.
				 *
				 * To test for support, try to render a new emoji (woman in business suit levitating),
				 * then compare it to how it would look if the browser doesn't render it correctly
				 * (person in business suit levitating + female sign).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[55357, 56692, 8205, 9792, 65039],
					[55357, 56692, 8203, 9792, 65039]
				);
				return ! isIdentical;
		}

		return false;
	}

	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.defer = script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'flag', 'emoji' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;

	settings.DOMReady = false;
	settings.readyCallback = function() {
		settings.DOMReady = true;
	};

	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		src = settings.source || {};

		if ( src.concatemoji ) {
			addScript( src.concatemoji );
		} else if ( src.wpemoji && src.twemoji ) {
			addScript( src.twemoji );
			addScript( src.wpemoji );
		}
	}

} )( window, document, window._wpemojiSettings );
		</script>
		<style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
<link rel='stylesheet' id='bookly-intlTelInput-css'  href='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/css/intlTelInput.css?ver=14.5' type='text/css' media='all' />
<link rel='stylesheet' id='bookly-ladda-min-css'  href='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/css/ladda.min.css?ver=14.5' type='text/css' media='all' />
<link rel='stylesheet' id='bookly-picker-css'  href='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/css/picker.classic.css?ver=14.5' type='text/css' media='all' />
<link rel='stylesheet' id='bookly-picker-date-css'  href='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/css/picker.classic.date.css?ver=14.5' type='text/css' media='all' />
<link rel='stylesheet' id='bookly-main-css'  href='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/css/bookly-main.css?ver=14.5' type='text/css' media='all' />
<link rel='stylesheet' id='bookly-customer-profile-css'  href='http://growthli.com/wp-content/plugins/appointment-booking/frontend/modules/customer_profile/resources/css/customer_profile.css?ver=14.5' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css'  href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css?ver=2.0.3.3' type='text/css' media='all' />
<style id='font-awesome-inline-css' type='text/css'>
[data-font="FontAwesome"]:before {font-family: 'FontAwesome' !important;content: attr(data-icon) !important;speak: none !important;font-weight: normal !important;font-variant: normal !important;text-transform: none !important;line-height: 1 !important;font-style: normal !important;-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale !important;}
</style>
<link rel='stylesheet' id='fl-builder-layout-413-css'  href='https://growthli.com/wp-content/uploads/bb-plugin/cache/413-layout.css?ver=0dac0feb67c3ce1b2916b81ace6b9b3e' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-layout-css'  href='http://growthli.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=3.2.6' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-smallscreen-css'  href='http://growthli.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=3.2.6' type='text/css' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css'  href='http://growthli.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=3.2.6' type='text/css' media='all' />
<link rel='stylesheet' id='if-menu-site-css-css'  href='http://growthli.com/wp-content/plugins/if-menu/assets/if-menu-site.css?ver=4.9.4' type='text/css' media='all' />
<link rel='stylesheet' id='ywpi_css-css'  href='http://growthli.com/wp-content/plugins/yith-woocommerce-pdf-invoice-premium/assets/css/ywpi.css?ver=4.9.4' type='text/css' media='all' />
<link rel='stylesheet' id='ywraq_prettyPhoto_css-css'  href='http://growthli.com/wp-content/plugins/yith-woocommerce-subscription-premium/assets/css/prettyPhoto.css?ver=4.9.4' type='text/css' media='all' />
<link rel='stylesheet' id='yith_ywsbs_frontend-css'  href='http://growthli.com/wp-content/plugins/yith-woocommerce-subscription-premium/assets/css/frontend.css?ver=4.9.4' type='text/css' media='all' />
<link rel='stylesheet' id='fl-builder-google-fonts-94892e1c87672765055212a8940eb164-css'  href='//fonts.googleapis.com/css?family=Raleway%3A800%2C700&#038;ver=4.9.4' type='text/css' media='all' />
<link rel='stylesheet' id='mono-social-icons-css'  href='http://growthli.com/wp-content/themes/bb-theme/css/mono-social-icons.css?ver=1.6.4' type='text/css' media='all' />
<link rel='stylesheet' id='jquery-magnificpopup-css'  href='http://growthli.com/wp-content/plugins/bb-plugin/css/jquery.magnificpopup.css?ver=2.0.3.3' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css'  href='http://growthli.com/wp-content/themes/bb-theme/css/bootstrap.min.css?ver=1.6.4' type='text/css' media='all' />
<link rel='stylesheet' id='fl-automator-skin-css'  href='https://growthli.com/wp-content/uploads/bb-theme/skin-5a59269653136.css?ver=1.6.4' type='text/css' media='all' />
<script type="text/template" id="tmpl-variation-template">
	<div class="woocommerce-variation-description">
		{{{ data.variation.variation_description }}}
	</div>

	<div class="woocommerce-variation-price">
		{{{ data.variation.price_html }}}
	</div>

	<div class="woocommerce-variation-availability">
		{{{ data.variation.availability_html }}}
	</div>
</script>
<script type="text/template" id="tmpl-unavailable-variation-template">
	<p>Sorry, this product is unavailable. Please choose a different combination.</p>
</script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/spin.min.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/ladda.min.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='http://growthli.com/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/hammer.min.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/jquery.hammer.min.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/picker.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/picker.date.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/intlTelInput.min.js?ver=14.5'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var BooklyL10n = {"csrf_token":"c45de0e312","today":"Today","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"days":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"daysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"nextMonth":"Next month","prevMonth":"Previous month","show_more":"Show more"};
/* ]]> */
</script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/resources/js/bookly.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/modules/customer_profile/resources/js/customer_profile.js?ver=14.5'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/appointment-booking/frontend/modules/cancellation_confirmation/resources/js/cancellation_confirmation.js?ver=14.5'></script>
<link rel='https://api.w.org/' href='https://growthli.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://growthli.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://growthli.com/wp-includes/wlwmanifest.xml" /> 
<meta name="generator" content="WordPress 4.9.4" />
<meta name="generator" content="WooCommerce 3.2.6" />
<link rel="canonical" href="https://growthli.com/harveyhelp/" />
<link rel='shortlink' href='https://growthli.com/?p=413' />
<link rel="alternate" type="application/json+oembed" href="https://growthli.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgrowthli.com%2Fharveyhelp%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://growthli.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgrowthli.com%2Fharveyhelp%2F&#038;format=xml" />
		<style>
			form[class*="fl-builder-adv-testimonials"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-advanced-accordion"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-advanced-icon"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-advanced-separator"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-advanced-tabs"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-blog-posts"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-creative-link"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-dual-button"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-dual-color-heading"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-fancy-text"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-flip-box"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-google-map"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-ihover"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-image-icon"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-image-separator"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-info-banner"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-info-box"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-info-circle"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-info-list"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-info-table"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-interactive-banner-1"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-interactive-banner-2"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-list-icon"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-mailchimp-subscribe-form"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-modal-popup"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-photo-gallery"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-pricing-box"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-progress-bar"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-ribbon"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-slide-box"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-spacer-gap"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-team"] .fl-lightbox-header h1:before,
			form[class*="fl-builder-uabb-"] .fl-lightbox-header h1:before {
				content: "UABB ";
				position: relative;
				display: inline-block;
				margin-right: 5px;
			}
		</style>
			<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
	<link rel="icon" href="https://growthli.com/wp-content/uploads/2017/04/cropped-Artboard-17-32x32.png" sizes="32x32" />
<link rel="icon" href="https://growthli.com/wp-content/uploads/2017/04/cropped-Artboard-17-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="https://growthli.com/wp-content/uploads/2017/04/cropped-Artboard-17-180x180.png" />
<meta name="msapplication-TileImage" content="https://growthli.com/wp-content/uploads/2017/04/cropped-Artboard-17-270x270.png" />
		<style type="text/css" id="wp-custom-css">
			/*

Click the help icon above to learn more.
*/
/* Style the menu with we want to stand out as a button */
.fl-page-nav-centered .fl-page-nav-wrap .navbar-nav > li.link-cta > a {
    background-color: #ed981a; /* replace this value with the color you want the background of your button to be */
    color: #fff; /* replace this with the color you want the text to be in your button */
}
/* Style the menu with we want to stand out as a button */
.fl-page-nav-centered .fl-page-nav-wrap .navbar-nav > li.link-cta2 > a {
    background-color: #ed981a; /* replace this value with the color you want the background of your button to be */
    color: #fff; /* replace this with the color you want the text to be in your button */ 77c044
}		</style>
	</head>

<body class="page-template-default page page-id-413 fl-builder yith-wcms show_checkout_login_reminder yith-wcms-pro fl-preset-default fl-full-width fl-shrink fl-footer-effect fl-scroll-to-top fl-submenu-toggle" itemscope="itemscope" itemtype="https://schema.org/WebPage">
<div class="fl-page">
	<div class="fl-page-bar">
	<div class="fl-page-bar-container container">
		<div class="fl-page-bar-row row">
			<div class="col-md-6 col-sm-6 text-left clearfix"><div class="fl-page-bar-text fl-page-bar-text-1"></div></div>			<div class="col-md-6 col-sm-6 text-right clearfix"><ul id="menu-top-bar" class="fl-page-bar-nav nav navbar-nav menu"><li id="menu-item-4524" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-ancestor current-menu-parent current_page_parent current_page_ancestor menu-item-has-children menu-item-4524"><a href="https://growthli.com/about/">About</a>
<ul class="sub-menu">
	<li id="menu-item-4528" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4528"><a href="https://growthli.com/growthli-gives/">Growthli Gives</a></li>
	<li id="menu-item-4525" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4525"><a href="https://growthli.com/freeworkspace/">Free Coworking</a></li>
	<li id="menu-item-4527" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-413 current_page_item menu-item-4527"><a href="https://growthli.com/harveyhelp/">Harvey Help</a></li>
	<li id="menu-item-4526" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4526"><a href="https://growthli.com/freethem/">Free Them</a></li>
</ul>
</li>
</ul></div>		</div>
	</div>
</div><!-- .fl-page-bar -->
<header class="fl-page-header fl-page-header-primary fl-page-nav-centered fl-page-nav-toggle-icon fl-page-nav-toggle-visible-mobile" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
	<div class="fl-page-header-wrap">
		<div class="fl-page-header-container container">
			<div class="fl-page-header-row row">
				<div class="col-md-12 fl-page-header-logo-col">
					<div class="fl-page-header-logo" itemscope="itemscope" itemtype="https://schema.org/Organization">
						<a href="https://growthli.com/" itemprop="url"><img class="fl-logo-img" itemscope itemtype="https://schema.org/ImageObject" src="https://growthli.com/wp-content/uploads/2017/11/Growthli-white-header-small.png" data-retina="" alt="Growthli" /><meta itemprop="name" content="Growthli" /></a>
					</div>
				</div>
			</div>
		</div>
	</div>
	<div class="fl-page-nav-wrap">
		<div class="fl-page-nav-container container">
			<nav class="fl-page-nav fl-nav navbar navbar-default" role="navigation" aria-label="Header Menu" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement">
				<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".fl-page-nav-collapse">
					<span><i class="fa fa-bars"></i></span>
				</button>
				<div class="fl-page-nav-collapse collapse navbar-collapse">
					<ul id="menu-main-menu" class="nav navbar-nav menu"><li id="menu-item-4350" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4350"><a href="https://growthli.com/coaching-and-consulting/">A Place To Grow</a></li>
<li id="menu-item-674" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-674"><a href="https://growthli.com/regency-square-blvd-houston-tx-cowork-lab-executive-suites/">A Place To Office</a></li>
<li id="menu-item-4518" class="link-cta menu-item menu-item-type-post_type menu-item-object-page menu-item-4518"><a href="https://growthli.com/complete-your-tour-invite-event-space/">Take A Tour</a></li>
<li id="menu-item-4529" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4529"><a href="https://growthli.com/pricing/">Pricing</a></li>
</ul>				</div>
			</nav>
		</div>
	</div>
</header><!-- .fl-page-header -->
	<div class="fl-page-content" itemprop="mainContentOfPage">

		
<div class="fl-content-full container">
	<div class="row">
		<div class="fl-content col-md-12">
							<article class="fl-post post-413 page type-page status-publish hentry" id="fl-post-413" itemscope="itemscope" itemtype="https://schema.org/CreativeWork">

			<div class="fl-post-content clearfix" itemprop="text">
		<div class="fl-builder-content fl-builder-content-413 fl-builder-content-primary fl-builder-global-templates-locked" data-post-id="413"><div class="fl-row fl-row-full-width fl-row-bg-photo fl-node-59a465d149b9e fl-row-bg-overlay" data-node="59a465d149b9e">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-full-width fl-node-content">
		
<div class="fl-col-group fl-node-59a465d149bd7" data-node="59a465d149bd7">
			<div class="fl-col fl-node-59a465d149c10" data-node="59a465d149c10">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59a465d14926b fl-animation fl-slide-up" data-node="59a465d14926b" data-animation-delay="0.6">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">Harvey<br>Help</span>
	</h1>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-full-width fl-row-bg-color fl-node-59a6f173bb132" data-node="59a6f173bb132">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a6f173bb60c" data-node="59a6f173bb60c">
			<div class="fl-col fl-node-59a6f173bb649" data-node="59a6f173bb649">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59a6f173bb683" data-node="59a6f173bb683">
	<div class="fl-module-content fl-node-content">
		<h2 class="fl-heading">
		<span class="fl-heading-text">UPDATE: FUNDED AND DELIVERED<br>Immediate Need: Funds For A 20ft Moving Truck Estimated 1.2k including fuel, rental, miles and hotels.</span>
	</h2>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59aef8501f838" data-node="59aef8501f838">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59aef8503e17b" data-node="59aef8503e17b">
			<div class="fl-col fl-node-59aef8503e55a" data-node="59aef8503e55a">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59aef72c13e1d" data-node="59aef72c13e1d">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">Volunteer Unloading Team At Impact Stone Design</span>
	</h1>
	</div>
</div>
<div class="fl-module fl-module-photo fl-node-59aef8501e426" data-node="59aef8501e426">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<img class="fl-photo-img wp-image-477 size-full" src="https://growthli.com/wp-content/uploads/2017/08/21231935_10155670335849183_2321523910501899973_n.jpg" alt="21231935_10155670335849183_2321523910501899973_n" itemprop="image" height="540" width="960" srcset="https://growthli.com/wp-content/uploads/2017/08/21231935_10155670335849183_2321523910501899973_n.jpg 960w, https://growthli.com/wp-content/uploads/2017/08/21231935_10155670335849183_2321523910501899973_n-300x169.jpg 300w, https://growthli.com/wp-content/uploads/2017/08/21231935_10155670335849183_2321523910501899973_n-768x432.jpg 768w" sizes="(max-width: 960px) 100vw, 960px" />
					</div>
	</div>
	</div>
</div>
<div class="fl-module fl-module-heading fl-node-59aef8ecd2e65" data-node="59aef8ecd2e65">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">Volunteer Unloading Team At Clothed By Faith</span>
	</h1>
	</div>
</div>
<div class="fl-module fl-module-photo fl-node-59aef89c5c050" data-node="59aef89c5c050">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<img class="fl-photo-img wp-image-476 size-full" src="https://growthli.com/wp-content/uploads/2017/08/21317813_10155670335879183_3334091942627384807_n.jpg" alt="21317813_10155670335879183_3334091942627384807_n" itemprop="image" height="720" width="960" srcset="https://growthli.com/wp-content/uploads/2017/08/21317813_10155670335879183_3334091942627384807_n.jpg 960w, https://growthli.com/wp-content/uploads/2017/08/21317813_10155670335879183_3334091942627384807_n-300x225.jpg 300w, https://growthli.com/wp-content/uploads/2017/08/21317813_10155670335879183_3334091942627384807_n-768x576.jpg 768w" sizes="(max-width: 960px) 100vw, 960px" />
					</div>
	</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59aef733ba95d" data-node="59aef733ba95d">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59aef733db5b8" data-node="59aef733db5b8">
			<div class="fl-col fl-node-59aef733db982" data-node="59aef733db982">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59aef8b6ec34c" data-node="59aef8b6ec34c">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">Tucson's Donations At Work</span>
	</h1>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a4efd0cff5f" data-node="59a4efd0cff5f">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a4efd0dab6a" data-node="59a4efd0dab6a">
			<div class="fl-col fl-node-59a4efd0dad90 fl-col-has-cols" data-node="59a4efd0dad90">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-rich-text fl-node-59aef62bc1edf" data-node="59aef62bc1edf">
	<div class="fl-module-content fl-node-content">
		<div class="fl-rich-text">
	<p><iframe style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Fjoshua.webb.549%2Fvideos%2F1871733089520704%2F&amp;show_text=1&amp;width=560" width="100%" height="700" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe></p>
</div>
	</div>
</div>

<div class="fl-col-group fl-node-59aef77b1f812 fl-col-group-nested" data-node="59aef77b1f812">
			<div class="fl-col fl-node-59aef77b1fdbb fl-col-small" data-node="59aef77b1fdbb">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-rich-text fl-node-59aef78458a10" data-node="59aef78458a10">
	<div class="fl-module-content fl-node-content">
		<div class="fl-rich-text">
	<p><iframe style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Fjoshua.webb.549%2Fvideos%2F1871897279504285%2F&amp;show_text=1&amp;width=560" width="100%" height="1000" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe></p>
</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59aef77b1fdff fl-col-small" data-node="59aef77b1fdff">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-rich-text fl-node-59aef6600fc9b" data-node="59aef6600fc9b">
	<div class="fl-module-content fl-node-content">
		<div class="fl-rich-text">
	<p><iframe style="border: none; overflow: hidden;" src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Fjoshua.webb.549%2Fvideos%2F1871836336177046%2F&amp;show_text=1&amp;width=560" width="100%" height="1000" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe></p>
</div>
	</div>
</div>
	</div>
</div>
	</div>
<div class="fl-module fl-module-heading fl-node-59a485fd5b3db" data-node="59a485fd5b3db">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">Local News Coverage By Tucson News Now</span>
	</h1>
	</div>
</div>

<div class="fl-col-group fl-node-59a4fb41a3100 fl-col-group-nested" data-node="59a4fb41a3100">
			<div class="fl-col fl-node-59a4fb41a35b9" data-node="59a4fb41a35b9">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a4eff955859" data-node="59a4eff955859">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.tucsonnewsnow.com/story/36237043/houston-couple-stranded-in-tucson-is-taking-action-to-help-victims-of-hurricane-harvey" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-429 size-full" src="https://growthli.com/wp-content/uploads/2017/08/Houston-family-stranded-in-Tucson-Tucson-News-Now.png" alt="Houston family stranded in Tucson Tucson News Now" itemprop="image" height="726" width="1284" srcset="https://growthli.com/wp-content/uploads/2017/08/Houston-family-stranded-in-Tucson-Tucson-News-Now.png 1284w, https://growthli.com/wp-content/uploads/2017/08/Houston-family-stranded-in-Tucson-Tucson-News-Now-300x170.png 300w, https://growthli.com/wp-content/uploads/2017/08/Houston-family-stranded-in-Tucson-Tucson-News-Now-768x434.png 768w, https://growthli.com/wp-content/uploads/2017/08/Houston-family-stranded-in-Tucson-Tucson-News-Now-1024x579.png 1024w, https://growthli.com/wp-content/uploads/2017/08/Houston-family-stranded-in-Tucson-Tucson-News-Now-601x340.png 601w" sizes="(max-width: 1284px) 100vw, 1284px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
	</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a48640aa9b8" data-node="59a48640aa9b8">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a48640aad79" data-node="59a48640aad79">
			<div class="fl-col fl-node-59a48640aadb5" data-node="59a48640aadb5">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59a48640aadef" data-node="59a48640aadef">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">How can you help? </span>
	</h1>
	</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-59a48640aae29" data-node="59a48640aae29">
	<div class="fl-module-content fl-node-content">
		<div class="fl-rich-text">
	<ol>
<li><span style="font-size: 24px;">Share this page with your communities and networks</span></li>
<li><span style="font-size: 24px;">Collect needed items</span></li>
<li><span style="font-size: 24px;">Contact us directly. Takeaction@growthli.com</span></li>
<li><span style="font-size: 24px;">Drop off donations at the local Camping World location.</span></li>
<li><span style="font-size: 24px;">Give financially if you are able at Growthli.com/HarveyHelp</span></li>
<li><span style="font-size: 24px;">Pray for the many displaced people and the continued reconstruction.</span></li>
</ol>
<p><span style="font-size: 24px;">For now, we are asking the donations be dropped off by Thursday evening at 8pm and will update that as things evolve.</span></p>
</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-full-width fl-row-bg-color fl-node-59a465d149ab8" data-node="59a465d149ab8">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a465d149af1" data-node="59a465d149af1">
			<div class="fl-col fl-node-59a465d149b2a" data-node="59a465d149b2a">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59a465d149cba" data-node="59a465d149cba">
	<div class="fl-module-content fl-node-content">
		<h2 class="fl-heading">
		<span class="fl-heading-text">Too far away from us, still want to help? Make a donation.</span>
	</h2>
	</div>
</div>
<div class="fl-module fl-module-button fl-node-59a465d149cf3 fl-animation fl-slide-up" data-node="59a465d149cf3" data-animation-delay="0">
	<div class="fl-module-content fl-node-content">
		<div class="fl-button-wrap fl-button-width-custom fl-button-center fl-button-has-icon">
			<a href="https://growthli.com/product/hurricane-harvey-help/" target="_self" class="fl-button fl-button-icon-animation" role="button">
							<span class="fl-button-text">Donate Now</span>
						<i class="fl-button-icon fl-button-icon-after fa fa fa-dollar"></i>
			</a>
</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a4c7b9a1755" data-node="59a4c7b9a1755">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a4c7b9ab7a0" data-node="59a4c7b9ab7a0">
			<div class="fl-col fl-node-59a4c7b9ab9c8" data-node="59a4c7b9ab9c8">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-heading fl-node-59a4c7ac6c098" data-node="59a4c7ac6c098">
	<div class="fl-module-content fl-node-content">
		<h1 class="fl-heading">
		<span class="fl-heading-text">A big thank you to those who are helping</span>
	</h1>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a4c79cf39bf" data-node="59a4c79cf39bf">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a4c79d0829d" data-node="59a4c79d0829d">
			<div class="fl-col fl-node-59a4c79d08495 fl-col-small" data-node="59a4c79d08495">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a4c7f8c8355" data-node="59a4c7f8c8355">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.innovativesignsoftucson.com/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-422 size-full" src="https://growthli.com/wp-content/uploads/2017/08/innovative-signs-logo.png" alt="innovative signs logo" itemprop="image" height="285" width="978" srcset="https://growthli.com/wp-content/uploads/2017/08/innovative-signs-logo.png 978w, https://growthli.com/wp-content/uploads/2017/08/innovative-signs-logo-300x87.png 300w, https://growthli.com/wp-content/uploads/2017/08/innovative-signs-logo-768x224.png 768w" sizes="(max-width: 978px) 100vw, 978px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a4c79d084da fl-col-small" data-node="59a4c79d084da">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a4c84287e54" data-node="59a4c84287e54">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<a href="http://www.tucsonfriends.org/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-423 size-full" src="https://growthli.com/wp-content/uploads/2017/08/Friends-Church-e1503971462168.jpg" alt="Friends-Church" itemprop="image" height="669" width="1467" srcset="https://growthli.com/wp-content/uploads/2017/08/Friends-Church-e1503971462168.jpg 1467w, https://growthli.com/wp-content/uploads/2017/08/Friends-Church-e1503971462168-300x137.jpg 300w, https://growthli.com/wp-content/uploads/2017/08/Friends-Church-e1503971462168-768x350.jpg 768w, https://growthli.com/wp-content/uploads/2017/08/Friends-Church-e1503971462168-1024x467.jpg 1024w" sizes="(max-width: 1467px) 100vw, 1467px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a4c79d08519 fl-col-small" data-node="59a4c79d08519">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a4f0954d59d" data-node="59a4f0954d59d">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.tucsonnewsnow.com/story/36237043/houston-couple-stranded-in-tucson-is-taking-action-to-help-victims-of-hurricane-harvey" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-427 size-full" src="https://growthli.com/wp-content/uploads/2017/08/news-logo.png" alt="news logo" itemprop="image" height="280" width="640" srcset="https://growthli.com/wp-content/uploads/2017/08/news-logo.png 640w, https://growthli.com/wp-content/uploads/2017/08/news-logo-300x131.png 300w" sizes="(max-width: 640px) 100vw, 640px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a4c79d08557 fl-col-small" data-node="59a4c79d08557">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a5b630a0acf" data-node="59a5b630a0acf">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<a href="https://www.facebook.com/Agape-Christian-Fellowship-Church-229229463831270/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-433 size-large" src="https://growthli.com/wp-content/uploads/2017/08/agape-christian-fellowship-1024x576.jpg" alt="agape christian fellowship" itemprop="image" height="576" width="1024" srcset="https://growthli.com/wp-content/uploads/2017/08/agape-christian-fellowship-1024x576.jpg 1024w, https://growthli.com/wp-content/uploads/2017/08/agape-christian-fellowship-300x169.jpg 300w, https://growthli.com/wp-content/uploads/2017/08/agape-christian-fellowship-768x432.jpg 768w" sizes="(max-width: 1024px) 100vw, 1024px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a719a73c5ad" data-node="59a719a73c5ad">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a719a73cd3e" data-node="59a719a73cd3e">
			<div class="fl-col fl-node-59a719a73cd79 fl-col-small" data-node="59a719a73cd79">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a73cdb2" data-node="59a719a73cdb2">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<a href="http://www.innovativesignsoftucson.com/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-442 size-full" src="https://growthli.com/wp-content/uploads/2017/08/KLOVE-Freq-88-1.jpg" alt="KLOVE-Freq-88-1" itemprop="image" height="270" width="300"  />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a719a73cdeb fl-col-small" data-node="59a719a73cdeb">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a73ce23" data-node="59a719a73ce23">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-gif">
				<a href="http://www.tucsonfriends.org/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-448 size-full" src="https://growthli.com/wp-content/uploads/2017/08/chick-fil-a-logo-vector.gif" alt="chick-fil-a-logo-vector" itemprop="image" height="390" width="693"  />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a719a73ce5c fl-col-small" data-node="59a719a73ce5c">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a73ce95" data-node="59a719a73ce95">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.tucsonnewsnow.com/story/36237043/houston-couple-stranded-in-tucson-is-taking-action-to-help-victims-of-hurricane-harvey" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-449 size-full" src="https://growthli.com/wp-content/uploads/2017/08/FLR-flat-color-logo-550px.png" alt="FLR-flat-color-logo-550px" itemprop="image" height="185" width="549" srcset="https://growthli.com/wp-content/uploads/2017/08/FLR-flat-color-logo-550px.png 549w, https://growthli.com/wp-content/uploads/2017/08/FLR-flat-color-logo-550px-300x101.png 300w" sizes="(max-width: 549px) 100vw, 549px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a719a73cecf fl-col-small" data-node="59a719a73cecf">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a73cf08" data-node="59a719a73cf08">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="https://www.facebook.com/Agape-Christian-Fellowship-Church-229229463831270/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-447 size-full" src="https://growthli.com/wp-content/uploads/2017/08/GoldenCorral_logo.png" alt="GoldenCorral_logo" itemprop="image" height="235" width="374" srcset="https://growthli.com/wp-content/uploads/2017/08/GoldenCorral_logo.png 374w, https://growthli.com/wp-content/uploads/2017/08/GoldenCorral_logo-300x189.png 300w" sizes="(max-width: 374px) 100vw, 374px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a719a5d1a18" data-node="59a719a5d1a18">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a719a5d20ca" data-node="59a719a5d20ca">
			<div class="fl-col fl-node-59a719a5d2106 fl-col-small" data-node="59a719a5d2106">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a5d2140" data-node="59a719a5d2140">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.innovativesignsoftucson.com/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-445 size-full" src="https://growthli.com/wp-content/uploads/2017/08/circle_k_logo_detail.png" alt="circle_k_logo_detail" itemprop="image" height="395" width="1000" srcset="https://growthli.com/wp-content/uploads/2017/08/circle_k_logo_detail.png 1000w, https://growthli.com/wp-content/uploads/2017/08/circle_k_logo_detail-300x119.png 300w, https://growthli.com/wp-content/uploads/2017/08/circle_k_logo_detail-768x303.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a719a5d2179 fl-col-small" data-node="59a719a5d2179">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a5d21b2" data-node="59a719a5d21b2">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.tucsonfriends.org/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-444 size-full" src="https://growthli.com/wp-content/uploads/2017/08/Subway_Logo_OG.png" alt="Subway_Logo_OG" itemprop="image" height="630" width="1200" srcset="https://growthli.com/wp-content/uploads/2017/08/Subway_Logo_OG.png 1200w, https://growthli.com/wp-content/uploads/2017/08/Subway_Logo_OG-300x158.png 300w, https://growthli.com/wp-content/uploads/2017/08/Subway_Logo_OG-768x403.png 768w, https://growthli.com/wp-content/uploads/2017/08/Subway_Logo_OG-1024x538.png 1024w" sizes="(max-width: 1200px) 100vw, 1200px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a719a5d21eb fl-col-small" data-node="59a719a5d21eb">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a5d2224" data-node="59a719a5d2224">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.tucsonnewsnow.com/story/36237043/houston-couple-stranded-in-tucson-is-taking-action-to-help-victims-of-hurricane-harvey" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-450 size-full" src="https://growthli.com/wp-content/uploads/2017/08/Texas_Roadhouse.svg_.png" alt="Texas_Roadhouse.svg" itemprop="image" height="696" width="1280" srcset="https://growthli.com/wp-content/uploads/2017/08/Texas_Roadhouse.svg_.png 1280w, https://growthli.com/wp-content/uploads/2017/08/Texas_Roadhouse.svg_-300x163.png 300w, https://growthli.com/wp-content/uploads/2017/08/Texas_Roadhouse.svg_-768x418.png 768w, https://growthli.com/wp-content/uploads/2017/08/Texas_Roadhouse.svg_-1024x557.png 1024w" sizes="(max-width: 1280px) 100vw, 1280px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a719a5d225d fl-col-small" data-node="59a719a5d225d">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a719a5d2295" data-node="59a719a5d2295">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="https://www.facebook.com/Agape-Christian-Fellowship-Church-229229463831270/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-451 size-full" src="https://growthli.com/wp-content/uploads/2017/08/barnnets-towing-logo.png" alt="barnnets towing logo" itemprop="image" height="89" width="225"  />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-59a7210907e2e" data-node="59a7210907e2e">
	<div class="fl-row-content-wrap">
				<div class="fl-row-content fl-row-fixed-width fl-node-content">
		
<div class="fl-col-group fl-node-59a721090867d" data-node="59a721090867d">
			<div class="fl-col fl-node-59a72109086b9 fl-col-small" data-node="59a72109086b9">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a72109086f2" data-node="59a72109086f2">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<a href="http://www.innovativesignsoftucson.com/" target="_blank" rel="noopener" itemprop="url">
				<img class="fl-photo-img wp-image-454 size-medium" src="https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_-300x282.png" alt="Pizza_Hut_logo.svg" itemprop="image" height="282" width="300" srcset="https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_-300x282.png 300w, https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_-768x723.png 768w, https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_-1024x964.png 1024w, https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_-18x18.png 18w, https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_-25x25.png 25w, https://growthli.com/wp-content/uploads/2017/08/Pizza_Hut_logo.svg_.png 1088w" sizes="(max-width: 300px) 100vw, 300px" />
				</a>
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a721090872a fl-col-small" data-node="59a721090872a">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a7262639c41" data-node="59a7262639c41">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-png">
				<img class="fl-photo-img wp-image-457 size-full" src="https://growthli.com/wp-content/uploads/2017/08/cabaa-automotive.png" alt="cabaa automotive" itemprop="image" height="376" width="673" srcset="https://growthli.com/wp-content/uploads/2017/08/cabaa-automotive.png 673w, https://growthli.com/wp-content/uploads/2017/08/cabaa-automotive-300x168.png 300w" sizes="(max-width: 673px) 100vw, 673px" />
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a721090879c fl-col-small" data-node="59a721090879c">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a7263f3ef70" data-node="59a7263f3ef70">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<img class="fl-photo-img wp-image-458 size-full" src="https://growthli.com/wp-content/uploads/2017/08/u-haul-logo-vector.jpg" alt="u-haul-logo-vector" itemprop="image" height="1714" width="4253" srcset="https://growthli.com/wp-content/uploads/2017/08/u-haul-logo-vector.jpg 4253w, https://growthli.com/wp-content/uploads/2017/08/u-haul-logo-vector-300x121.jpg 300w, https://growthli.com/wp-content/uploads/2017/08/u-haul-logo-vector-768x310.jpg 768w, https://growthli.com/wp-content/uploads/2017/08/u-haul-logo-vector-1024x413.jpg 1024w" sizes="(max-width: 4253px) 100vw, 4253px" />
					</div>
	</div>
	</div>
</div>
	</div>
</div>
			<div class="fl-col fl-node-59a721090880d fl-col-small" data-node="59a721090880d">
	<div class="fl-col-content fl-node-content">
	<div class="fl-module fl-module-photo fl-node-59a72f97e8b36" data-node="59a72f97e8b36">
	<div class="fl-module-content fl-node-content">
		<div class="fl-photo fl-photo-align-center" itemscope itemtype="http://schema.org/ImageObject">
	<div class="fl-photo-content fl-photo-img-jpg">
				<img class="fl-photo-img wp-image-460 size-full" src="https://growthli.com/wp-content/uploads/2017/08/newgaplogo.jpg" alt="newgaplogo" itemprop="image" height="509" width="800" srcset="https://growthli.com/wp-content/uploads/2017/08/newgaplogo.jpg 800w, https://growthli.com/wp-content/uploads/2017/08/newgaplogo-300x191.jpg 300w, https://growthli.com/wp-content/uploads/2017/08/newgaplogo-768x489.jpg 768w, https://growthli.com/wp-content/uploads/2017/08/newgaplogo-66x43.jpg 66w" sizes="(max-width: 800px) 100vw, 800px" />
					</div>
	</div>
	</div>
</div>
	</div>
</div>
	</div>
		</div>
	</div>
</div>
</div><div id="uabb-js-breakpoint" class="uabb-js-breakpoint" style="display: none;"></div>	</div><!-- .fl-post-content -->
	
</article>

<!-- .fl-post -->
					</div>
	</div>
</div>


	</div><!-- .fl-page-content -->
		<footer class="fl-page-footer-wrap" itemscope="itemscope" itemtype="https://schema.org/WPFooter">
		<div class="fl-page-footer">
	<div class="fl-page-footer-container container">
		<div class="fl-page-footer-row row">
			<div class="col-md-12 text-center clearfix"><div class="fl-page-footer-text fl-page-footer-text-1">© 2017 Growthli | Powered by Markified</div></div>					</div>
	</div>
</div><!-- .fl-page-footer -->
	</footer>
		</div><!-- .fl-page -->
<script type="text/javascript">

if(typeof jQuery == 'undefined' || typeof jQuery.fn.on == 'undefined') {
	document.write('<script src="http://growthli.com/wp-includes/js/jquery/jquery.js"><\/script>');
	document.write('<script src="http://growthli.com/wp-includes/js/jquery/jquery-migrate.min.js"><\/script>');
}

</script>
<a href="#" id="fl-to-top"><i class="fa fa-chevron-up"></i></a><script type='text/javascript' src='http://growthli.com/wp-content/plugins/bb-plugin/js/jquery.waypoints.min.js?ver=2.0.3.3'></script>
<script type='text/javascript' src='https://growthli.com/wp-content/uploads/bb-plugin/cache/413-layout.js?ver=0dac0feb67c3ce1b2916b81ace6b9b3e'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js?ver=2.70'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js?ver=2.1.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"https:\/\/growthli.com\/?wc-ajax=%%endpoint%%"};
/* ]]> */
</script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js?ver=3.2.6'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"https:\/\/growthli.com\/?wc-ajax=%%endpoint%%","fragment_name":"wc_fragments_23b2094b7bc20a5c91a0d2ce04cf1982"};
/* ]]> */
</script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js?ver=3.2.6'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/yith-woocommerce-subscription-premium/assets/js/jquery.prettyPhoto.js?ver=4.9.4'></script>
<script type='text/javascript' src='http://growthli.com/wp-includes/js/underscore.min.js?ver=1.8.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}};
var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}};
/* ]]> */
</script>
<script type='text/javascript' src='http://growthli.com/wp-includes/js/wp-util.js?ver=4.9.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var wc_add_to_cart_variation_params = {"wc_ajax_url":"https:\/\/growthli.com\/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_make_a_selection_text":"Please select some product options before adding this product to your cart.","i18n_unavailable_text":"Sorry, this product is unavailable. Please choose a different combination."};
/* ]]> */
</script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js?ver=3.2.6'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var yith_ywsbs_frontend = {"add_to_cart_label":"Subscribe","default_cart_label":"Add to cart"};
/* ]]> */
</script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/yith-woocommerce-subscription-premium/assets/js/ywsbs-frontend.js?ver=1.2.9'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/themes/bb-theme/js/jquery.throttle.min.js?ver=1.6.4'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/bb-plugin/js/jquery.imagesloaded.min.js?ver=2.0.3.3'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/plugins/bb-plugin/js/jquery.magnificpopup.min.js?ver=2.0.3.3'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/themes/bb-theme/js/bootstrap.min.js?ver=1.6.4'></script>
<script type='text/javascript' src='http://growthli.com/wp-content/themes/bb-theme/js/theme.js?ver=1.6.4'></script>
<script type='text/javascript' src='http://growthli.com/wp-includes/js/wp-embed.js?ver=4.9.4'></script>
</body>
</html>
