<!DOCTYPE html>

<!--// OPEN HTML //-->
<html lang="en-US">

<!--// OPEN HEAD //-->
<head>
    
    <!--// SITE TITLE //-->
    <title>Parkour Generations | Master Your Movement</title>

    <!--// SITE META //-->
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="apple-mobile-web-app-title" content="PKGenerations">
    
    <!--// PINGBACK & FAVICON //-->
    <link rel="pingback" href="https://parkourgenerations.com/xmlrpc.php" />
    <link rel="shortcut icon" href="//parkourgenerations.com/wp-content/uploads/2014/09/Logo_White-1.png" />
                
    <!-- MOVED FONT LOADING TO FOOTER. -->


    
    <!-- Facebook Pixel Code -->
    <script>
    !function(f,b,e,v,n,t,s)
    {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
    n.callMethod.apply(n,arguments):n.queue.push(arguments)};
    if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
    n.queue=[];t=b.createElement(e);t.async=!0;
    t.src=v;s=b.getElementsByTagName(e)[0];
    s.parentNode.insertBefore(t,s)}(window,document,'script',
    'https://connect.facebook.net/en_US/fbevents.js');
     fbq('init', '166922877252651'); 
     fbq('track', 'PageView');
     function linkOrButtonClicked() {
        fbq('track', 'AllButtonLinkClicks');
     }
    </script>
    <noscript>
     <img height="1" width="1" 
    src="https://www.facebook.com/tr?id=166922877252651&ev=PageView
    &noscript=1"/>
    </noscript>
    <!-- End Facebook Pixel Code -->

    <!--// WORDPRESS HEAD HOOK //-->
        <script>
        writeCookie();
        function writeCookie()
        {
            the_cookie = document.cookie;
            if( the_cookie ){
                if( window.devicePixelRatio >= 2 ){
                    the_cookie = "pixel_ratio="+window.devicePixelRatio+";"+the_cookie;
                    document.cookie = the_cookie;
                    //location = '';
                }
            }
        }
    </script>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//checkout.stripe.com' />
<link rel='dns-prefetch' href='//maps.google.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="Parkour Generations &raquo; Feed" href="https://parkourgenerations.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Parkour Generations &raquo; Comments Feed" href="https://parkourgenerations.com/comments/feed/" />
		<script type="text/javascript">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/parkourgenerations.com\/wp-includes\/js\/wp-emoji.js?ver=5.8","twemoji":"https:\/\/parkourgenerations.com\/wp-includes\/js\/twemoji.js?ver=5.8"}};
			/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

( 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' );

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {number[]} set1 Set of Emoji character codes.
	 * @param {number[]} set2 Set of Emoji character codes.
	 *
	 * @return {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;
	}

	/**
	 * Detects 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
	 *
	 * @private
	 *
	 * @param {string} type 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 Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
				 * but has landed in Twemoji early, so we can add support for it, too.
				 *
				 * 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 (white flag emoji + transgender symbol).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ],
					[ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * 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(
					[ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ],
					[ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ]
				);

				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(
					[ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ],
					[ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ]
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Burning Love: Just a hunk, a hunk of burnin' love.
				 *
				 *  To test for Emoji 13.1 support, try to render a new emoji: Heart on Fire!
				 *
				 * The Heart on Fire emoji is a ZWJ sequence combining ❤️ Red Heart, a Zero Width Joiner and 🔥 Fire.
				 *
				 * 0x2764, 0xfe0f == Red Heart emoji.
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0xD83D, 0xDD25 == Fire.
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					[0x2764, 0xfe0f, 0x200D, 0xD83D, 0xDD25],
					[0x2764, 0xfe0f, 0x200B, 0xD83D, 0xDD25]
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {Object} src The url where the script is located.
	 * @return {void}
	 */
	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
	};

	/*
	 * Tests the browser support for flag emojis and other emojis, and adjusts the
	 * support settings accordingly.
	 */
	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;

	// Sets DOMReady to false and assigns a ready function to settings.
	settings.DOMReady = false;
	settings.readyCallback = function() {
		settings.DOMReady = true;
	};

	// When the browser can not render everything we need to load a polyfill.
	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		/*
		 * Cross-browser version of adding a dom ready event.
		 */
		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='wp-block-library-css'  href='https://parkourgenerations.com/wp-includes/css/dist/block-library/style.css?ver=5.8' type='text/css' media='all' />
<link rel='stylesheet' id='essential-grid-plugin-settings-css'  href='https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/css/settings.css?ver=2.2.5' type='text/css' media='all' />
<link rel='stylesheet' id='tp-open-sans-css'  href='https://fonts.googleapis.com/css?family=Open+Sans%3A400%2C600%2C700&#038;ver=5.8' type='text/css' media='all' />
<link rel='stylesheet' id='tp-fontello-css'  href='https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/font/fontello/css/fontello.css?ver=2.2.5' type='text/css' media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css'  href='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/css/settings.css?ver=5.4.5.1' type='text/css' media='all' />
<style id='rs-plugin-settings-inline-css' type='text/css'>
#rs-demo-id {}
</style>
<link rel='stylesheet' id='mc4wp-form-basic-css'  href='https://parkourgenerations.com/wp-content/plugins/mailchimp-for-wp/assets/css/form-basic.css?ver=4.8.6' type='text/css' media='all' />
<link rel='stylesheet' id='stripe-checkout-button-css'  href='https://checkout.stripe.com/v3/checkout/button.css?ver=2.5.4' type='text/css' media='all' />
<link rel='stylesheet' id='stripe-checkout-pro-pikaday-css'  href='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/css/vendor/pikaday.css?ver=2.5.4' type='text/css' media='all' />
<link rel='stylesheet' id='stripe-checkout-pro-public-lite-css'  href='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/css/shared-public-main.css?ver=2.5.4' type='text/css' media='all' />
<link rel='stylesheet' id='stripe-checkout-pro-public-css'  href='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/css/pro-public.css?ver=2.5.4' type='text/css' media='all' />
<link rel='stylesheet' id='ubermenu-css'  href='https://parkourgenerations.com/wp-content/plugins/ubermenu/pro/assets/css/ubermenu.min.css?ver=3.2.5' type='text/css' media='all' />
<link rel='stylesheet' id='ubermenu-trans-black-css'  href='https://parkourgenerations.com/wp-content/plugins/ubermenu/pro/assets/css/skins/trans_black.css?ver=5.8' type='text/css' media='all' />
<link rel='stylesheet' id='ubermenu-black-white-2-css'  href='https://parkourgenerations.com/wp-content/plugins/ubermenu/assets/css/skins/blackwhite2.css?ver=5.8' type='text/css' media='all' />
<link rel='stylesheet' id='ubermenu-font-awesome-css'  href='https://parkourgenerations.com/wp-content/plugins/ubermenu-icons/assets/font-awesome/css/font-awesome.min.css?ver=4.6.3' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css'  href='https://parkourgenerations.com/wp-content/themes/dante/css/bootstrap.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='ssgizmo-css'  href='https://parkourgenerations.com/wp-content/themes/dante/css/ss-gizmo.css' type='text/css' media='all' />
<link rel='stylesheet' id='fontawesome-css'  href='https://parkourgenerations.com/wp-content/themes/dante/css/font-awesome.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='sf-main-css'  href='https://parkourgenerations.com/wp-content/themes/dante-child-pkgen-v4/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='sf-responsive-css'  href='https://parkourgenerations.com/wp-content/themes/dante/css/responsive.css' type='text/css' media='all' />
<metaname="robots" content="noindex,follow"></metaname><script type='text/javascript' src='https://parkourgenerations.com/wp-includes/js/jquery/jquery.js?ver=3.6.0' id='jquery-core-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js?ver=5.4.5.1' id='revmin-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.actions.min.js?ver=5.4.5.1' id='revmin-actions-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.carousel.min.js?ver=5.4.5.1' id='revmin-carousel-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.kenburn.min.js?ver=5.4.5.1' id='revmin-kenburn-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.layeranimation.min.js?ver=5.4.5.1' id='revmin-layeranimation-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.migration.min.js?ver=5.4.5.1' id='revmin-migration-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.navigation.min.js?ver=5.4.5.1' id='revmin-navigation-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.parallax.min.js?ver=5.4.5.1' id='revmin-parallax-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.slideanims.min.js?ver=5.4.5.1' id='revmin-slideanims-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.video.min.js?ver=5.4.5.1' id='revmin-video-js'></script>
<link rel="https://api.w.org/" href="https://parkourgenerations.com/wp-json/" /><link rel="alternate" type="application/json" href="https://parkourgenerations.com/wp-json/wp/v2/pages/112252" /><meta name="generator" content="WordPress 5.8" />
<link rel="canonical" href="https://parkourgenerations.com/" />
<link rel='shortlink' href='https://parkourgenerations.com/' />
<link rel="alternate" type="application/json+oembed" href="https://parkourgenerations.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fparkourgenerations.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://parkourgenerations.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fparkourgenerations.com%2F&#038;format=xml" />
<style id="ubermenu-custom-generated-css">
/** UberMenu Responsive Styles (Breakpoint Setting) **/
@media screen and (min-width: 11px){
  .ubermenu{ display:block !important; } .ubermenu-responsive .ubermenu-item.ubermenu-hide-desktop{ display:none !important; } .ubermenu-responsive.ubermenu-retractors-responsive .ubermenu-retractor-mobile{ display:none; }   /* Force current submenu always open but below others */ .ubermenu-force-current-submenu .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-submenu-drop, .ubermenu-force-current-submenu .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-submenu-drop {     display: block!important;     opacity: 1!important;     visibility: visible!important;     margin: 0!important;     top: auto!important;     height: auto;     z-index:19; }   /* Invert Horizontal menu to make subs go up */ .ubermenu-invert.ubermenu-horizontal .ubermenu-item-level-0 > .ubermenu-submenu-drop{      top:auto;      bottom:100%; } .ubermenu-invert.ubermenu-horizontal.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target:after{      content:"\f106"; } /* Make second level flyouts fly up */ .ubermenu-invert.ubermenu-horizontal .ubermenu-submenu .ubermenu-item.ubermenu-active > .ubermenu-submenu-type-flyout{     top:auto;     bottom:0; } /* Clip the submenus properly when inverted */ .ubermenu-invert.ubermenu-horizontal .ubermenu-item-level-0 > .ubermenu-submenu-drop{     clip: rect(-5000px,5000px,auto,-5000px); }    /* Invert Vertical menu to make subs go left */ .ubermenu-invert.ubermenu-vertical .ubermenu-item-level-0 > .ubermenu-submenu-drop{   right:100%;   left:auto; } .ubermenu-invert.ubermenu-vertical.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-item-has-children > a.ubermenu-target:after{   right:auto;   left:10px;   margin-top:-7px;   content:"\f104"; } .ubermenu-vertical.ubermenu-invert .ubermenu-item > .ubermenu-submenu-drop {   clip: rect(-5000px,5000px,5000px,-5000px); } .ubermenu-responsive-toggle{ display:none; }
}
@media screen and (max-width: 10px){
   .ubermenu-responsive-toggle, .ubermenu-sticky-toggle-wrapper { display: block; }  .ubermenu-responsive{ width:100%; max-height:500px; visibility:visible; overflow:visible;  -webkit-transition:max-height 1s ease-in; transition:max-height .3s ease-in; } .ubermenu-responsive.ubermenu-items-align-center{     text-align:left; } .ubermenu-responsive.ubermenu{ margin:0; } .ubermenu-responsive.ubermenu .ubermenu-nav{ display:block; }  .ubermenu-responsive.ubermenu-responsive-nocollapse, .ubermenu-repsonsive.ubermenu-no-transitions{ display:block; max-height:none; }  .ubermenu-responsive.ubermenu-responsive-collapse{ max-height:none; visibility:visible; overflow:visible; } .ubermenu-responsive.ubermenu-responsive-collapse{ max-height:0; overflow:hidden !important; visibility:hidden; } .ubermenu-responsive.ubermenu-in-transition, .ubermenu-responsive.ubermenu-in-transition .ubermenu-nav{ overflow:hidden !important; visibility:visible; } .ubermenu-responsive.ubermenu-responsive-collapse:not(.ubermenu-in-transition){ border-top-width:0; border-bottom-width:0; } .ubermenu-responsive.ubermenu-responsive-collapse .ubermenu-item .ubermenu-submenu{ display:none; }  .ubermenu-responsive .ubermenu-item-level-0{ width:50%; } .ubermenu-responsive.ubermenu-responsive-single-column .ubermenu-item-level-0{ float:none; clear:both; width:100%; } .ubermenu-responsive .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target{ border:none; box-shadow:none; } .ubermenu-responsive .ubermenu-item.ubermenu-has-submenu-flyout{ position:static; } .ubermenu-responsive.ubermenu-sub-indicators .ubermenu-submenu-type-flyout .ubermenu-has-submenu-drop > .ubermenu-target:after{ content:"\f107"; }  .ubermenu-responsive .ubermenu-nav .ubermenu-item .ubermenu-submenu.ubermenu-submenu-drop{ width:100%; min-width:100%; max-width:100%; top:auto; left:0 !important; } .ubermenu-responsive.ubermenu-has-border .ubermenu-nav .ubermenu-item .ubermenu-submenu.ubermenu-submenu-drop{ left: -1px !important; /* For borders */ } .ubermenu-responsive .ubermenu-submenu.ubermenu-submenu-type-mega > .ubermenu-item.ubermenu-column{ min-height:0; border-left:none;  float:left; /* override left/center/right content alignment */ display:block; } .ubermenu-responsive .ubermenu-item.ubermenu-active > .ubermenu-submenu.ubermenu-submenu-type-mega{     max-height:none;     height:auto;/*prevent overflow scrolling since android is still finicky*/     overflow:visible; } .ubermenu-responsive.ubermenu-transition-slide .ubermenu-item.ubermenu-in-transition > .ubermenu-submenu-drop{ max-height:1000px; /* because of slide transition */ } .ubermenu .ubermenu-submenu-type-flyout .ubermenu-submenu-type-mega{ min-height:0; } .ubermenu.ubermenu-responsive .ubermenu-column, .ubermenu.ubermenu-responsive .ubermenu-column-auto{ min-width:50%; } .ubermenu.ubermenu-responsive .ubermenu-autoclear > .ubermenu-column{ clear:none; } .ubermenu.ubermenu-responsive .ubermenu-column:nth-of-type(2n+1){ clear:both; } .ubermenu.ubermenu-responsive .ubermenu-submenu-retractor-top:not(.ubermenu-submenu-retractor-top-2) .ubermenu-column:nth-of-type(2n+1){ clear:none; } .ubermenu.ubermenu-responsive .ubermenu-submenu-retractor-top:not(.ubermenu-submenu-retractor-top-2) .ubermenu-column:nth-of-type(2n+2){ clear:both; }   .ubermenu.ubermenu-responsive .ubermenu-tabs, .ubermenu.ubermenu-responsive .ubermenu-tabs-group, .ubermenu.ubermenu-responsive .ubermenu-tab, .ubermenu.ubermenu-responsive .ubermenu-tab-content-panel{ /** TABS SHOULD BE 100%  ACCORDION */ width:100%; min-width:100%; max-width:100%; left:0; } .ubermenu.ubermenu-responsive .ubermenu-tabs, .ubermenu.ubermenu-responsive .ubermenu-tab-content-panel{ min-height:0 !important;/* Override Inline Style from JS */ } .ubermenu.ubermenu-responsive .ubermenu-tabs{ z-index:15; } .ubermenu.ubermenu-responsive .ubermenu-tab-content-panel{ z-index:20; } /* Tab Layering */ .ubermenu-responsive .ubermenu-tab{ position:relative; } .ubermenu-responsive .ubermenu-tab.ubermenu-active{ position:relative; z-index:20; } .ubermenu-responsive .ubermenu-tab > .ubermenu-target{ border-width:0 0 1px 0; } .ubermenu-responsive.ubermenu-sub-indicators .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab.ubermenu-has-submenu-drop > .ubermenu-target:after{ content:"\f107"; }  .ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel{ top:auto; border-width:1px; } .ubermenu-responsive .ubermenu-tab-layout-bottom > .ubermenu-tabs-group{ /*position:relative;*/ }   .ubermenu-reponsive .ubermenu-item-level-0 > .ubermenu-submenu-type-stack{ /* Top Level Stack Columns */ position:relative; }  .ubermenu-responsive .ubermenu-submenu-type-stack .ubermenu-column, .ubermenu-responsive .ubermenu-submenu-type-stack .ubermenu-column-auto{ /* Stack Columns */ width:100%; max-width:100%; }   .ubermenu-responsive .ubermenu-item-mini{ /* Mini items */ min-width:0; width:auto; float:left; clear:none !important; } .ubermenu-responsive .ubermenu-item.ubermenu-item-mini > a.ubermenu-target{ padding-left:20px; padding-right:20px; }   .ubermenu-responsive .ubermenu-item.ubermenu-hide-mobile{ /* Hiding items */ display:none !important; }  .ubermenu-responsive.ubermenu-hide-bkgs .ubermenu-submenu.ubermenu-submenu-bkg-img{ /** Hide Background Images in Submenu */ background-image:none; } .ubermenu.ubermenu-responsive .ubermenu-item-level-0.ubermenu-item-mini{ min-width:0; width:auto; } .ubermenu-vertical .ubermenu-item.ubermenu-item-level-0{ width:100%; } .ubermenu-vertical.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-item-has-children > .ubermenu-target:after{ content:'\f107'; } .ubermenu-vertical .ubermenu-item.ubermenu-item-level-0.ubermenu-relative.ubermenu-active > .ubermenu-submenu-drop.ubermenu-submenu-align-vertical_parent_item{     top:auto; } .ubermenu-responsive-toggle{ display:block; }
}
@media screen and (max-width: 480px){
  .ubermenu.ubermenu-responsive .ubermenu-item-level-0{ width:100%; } .ubermenu.ubermenu-responsive .ubermenu-column, .ubermenu.ubermenu-responsive .ubermenu-column-auto{ min-width:100%; } 
}


/** UberMenu Custom Menu Styles (Customizer) **/
/* main */
.ubermenu-main .ubermenu-item .ubermenu-submenu-drop { -webkit-transition-duration:300ms; -ms-transition-duration:300ms; transition-duration:300ms; }
.ubermenu-main .ubermenu-item-layout-image_left > .ubermenu-target-text { padding-left:26px; }
.ubermenu-main .ubermenu-item-layout-image_right > .ubermenu-target-text { padding-right:26px; }
.ubermenu-main { background:#ffffff; }
.ubermenu.ubermenu-main { background:none; border:none; box-shadow:none; }
.ubermenu.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { border:none; box-shadow:none; }
.ubermenu.ubermenu-main.ubermenu-horizontal .ubermenu-submenu-drop.ubermenu-submenu-align-left_edge_bar, .ubermenu.ubermenu-main.ubermenu-horizontal .ubermenu-submenu-drop.ubermenu-submenu-align-full_width { left:0; }
.ubermenu.ubermenu-main.ubermenu-horizontal .ubermenu-item-level-0.ubermenu-active > .ubermenu-submenu-drop, .ubermenu.ubermenu-main.ubermenu-horizontal:not(.ubermenu-transition-shift) .ubermenu-item-level-0 > .ubermenu-submenu-drop { margin-top:0; }
.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target { font-size:12px; color:#000000; padding-top:32px; padding-bottom:32px; padding-left:10px; padding-right:10px; }
.ubermenu-main .ubermenu-nav .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target { font-weight:normal; }
.ubermenu.ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-active > .ubermenu-target { color:#440000; }
.ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target { color:#000000; }
.ubermenu-responsive-toggle-main, .ubermenu-main, .ubermenu-main .ubermenu-target, .ubermenu-main .ubermenu-nav .ubermenu-item-level-0 .ubermenu-target { font-family:Open Sans; }
.ubermenu-main, .ubermenu-main .ubermenu-target, .ubermenu-main .ubermenu-nav .ubermenu-item-level-0 .ubermenu-target { font:14px; }
/* submenu */
.ubermenu-submenu .ubermenu-item .ubermenu-submenu-drop { -webkit-transition-duration:1s; -ms-transition-duration:1s; transition-duration:1s; }
.ubermenu-submenu { background:#252525; }
.ubermenu-submenu .ubermenu-nav .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target { font-weight:bold; }
.ubermenu-submenu .ubermenu-item-level-0 > .ubermenu-target { color:#ffffff; }
.ubermenu.ubermenu-submenu .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-submenu .ubermenu-item-level-0.ubermenu-active > .ubermenu-target { color:#000000; background:#ffffff; }
.ubermenu-submenu .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target, .ubermenu-submenu .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target, .ubermenu-submenu .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target { color:#ffffff; }
.ubermenu-submenu .ubermenu-item.ubermenu-item-level-0 > .ubermenu-highlight { color:#000000; }
/* slidermenu */
.ubermenu-slidermenu { max-width:805px; margin-top:40px; margin-bottom:40px; background:#eaeaea; border:1px solid #ffffff; }
.ubermenu-slidermenu .ubermenu-nav .ubermenu-item.ubermenu-item-level-0 > .ubermenu-target { font-weight:normal; }
.ubermenu-slidermenu .ubermenu-item-level-0 > .ubermenu-target { color:#111111; border-left-color:#ffffff; }
.ubermenu.ubermenu-slidermenu .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-slidermenu .ubermenu-item-level-0.ubermenu-active > .ubermenu-target { color:#eaeaea; background:#303841; }
.ubermenu-slidermenu .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target, .ubermenu-slidermenu .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target, .ubermenu-slidermenu .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target { color:#303841; }
.ubermenu.ubermenu-slidermenu .ubermenu-item-level-0 > .ubermenu-target { background:#eaeaea; }
.ubermenu-slidermenu, .ubermenu-slidermenu .ubermenu-target, .ubermenu-slidermenu .ubermenu-nav .ubermenu-item-level-0 .ubermenu-target, .ubermenu-slidermenu div, .ubermenu-slidermenu p, .ubermenu-slidermenu input { font-family:'Open Sans', sans-serif; font-weight:300; }
/* mobilemenu */
.ubermenu-mobilemenu .ubermenu-item-level-0 > .ubermenu-target { padding-left:5px; padding-right:5px; }
.ubermenu-mobilemenu.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target:not(.ubermenu-noindicator) { padding-right:20px; }
.ubermenu-mobilemenu.ubermenu-sub-indicators .ubermenu-item-level-0.ubermenu-has-submenu-drop > .ubermenu-target.ubermenu-noindicator { padding-right:5px; }
.ubermenu-mobilemenu .ubermenu-item-normal > .ubermenu-target .ubermenu-icon { color:#ffffff; }


/** UberMenu Custom Menu Item Styles (Menu Item Settings) **/
/* 102824 */.ubermenu .ubermenu-item.ubermenu-item-102824.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-102824 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-102824.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-102824 > .ubermenu-target:hover { background:#990000; }
            .ubermenu .ubermenu-item.ubermenu-item-102824.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-102824:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-102824.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-102824:hover > .ubermenu-target { color:#eaeaea; }
/* 110216 */.ubermenu .ubermenu-item.ubermenu-item-110216 > .ubermenu-target { background:#1e73be; }
/* 110796 */.ubermenu .ubermenu-item.ubermenu-item-110796 > .ubermenu-target { background:#303841; color:#eaeaea; }
            .ubermenu .ubermenu-item.ubermenu-item-110796.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-110796 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110796.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110796 > .ubermenu-target:hover { background:#990000; }
            .ubermenu .ubermenu-item.ubermenu-item-110796.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-110796:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110796.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110796:hover > .ubermenu-target { color:#eaeaea; }
            .ubermenu .ubermenu-item.ubermenu-item-110796.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-110796.ubermenu-current-menu-ancestor > .ubermenu-target { background:#990000; color:#eaeaea; }
            .ubermenu .ubermenu-item.ubermenu-item-110796 > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-110796 > .ubermenu-content-block,.ubermenu .ubermenu-item.ubermenu-item-110796.ubermenu-custom-content-padded { padding:0px 10px 0px 10px; }
/* 110815 */.ubermenu .ubermenu-item.ubermenu-item-110815 > .ubermenu-target { background:#eaeaea; color:#303841; }
            .ubermenu .ubermenu-item.ubermenu-item-110815.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-110815 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110815.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110815 > .ubermenu-target:hover { background:#303841; }
            .ubermenu .ubermenu-item.ubermenu-item-110815.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-110815:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110815.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110815:hover > .ubermenu-target { color:#eaeaea; }
/* 112013 */.ubermenu .ubermenu-item.ubermenu-item-112013.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-112013:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112013.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112013:hover > .ubermenu-target { color:#3498db; }
            .ubermenu .ubermenu-item.ubermenu-item-112013.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-112013.ubermenu-current-menu-ancestor > .ubermenu-target { color:#3498db; }
/* 112016 */.ubermenu .ubermenu-item.ubermenu-item-112016.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-112016:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112016.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112016:hover > .ubermenu-target { color:#fec230; }
            .ubermenu .ubermenu-item.ubermenu-item-112016.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-112016.ubermenu-current-menu-ancestor > .ubermenu-target { color:#fec230; }
/* 112236 */.ubermenu .ubermenu-item.ubermenu-item-112236 > .ubermenu-target { background:#990000; color:#eaeaea; }
            .ubermenu .ubermenu-item.ubermenu-item-112236.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-112236 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112236.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112236 > .ubermenu-target:hover { background:#3a4750; }
            .ubermenu .ubermenu-item.ubermenu-item-112236.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-112236:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112236.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112236:hover > .ubermenu-target { color:#ffffff; }
/* 112339 */.ubermenu .ubermenu-item.ubermenu-item-112339.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-112339 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112339.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-112339 > .ubermenu-target:hover { background:#eaeaea; }
            .ubermenu .ubermenu-item.ubermenu-item-112339.ubermenu-current-menu-item > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-112339.ubermenu-current-menu-ancestor > .ubermenu-target { background:#eaeaea; }
/* 124432 */.ubermenu .ubermenu-item.ubermenu-item-124432 > .ubermenu-target { background:#990000; color:#ffffff; }
            .ubermenu .ubermenu-item.ubermenu-item-124432.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-124432 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-124432.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-124432 > .ubermenu-target:hover { background:#3a4750; }
            .ubermenu .ubermenu-item.ubermenu-item-124432.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-124432:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-124432.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-124432:hover > .ubermenu-target { color:#ffffff; }
/* 113163 */.ubermenu .ubermenu-item.ubermenu-item-113163.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-113163:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-113163.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-113163:hover > .ubermenu-target { color:#4cb019; }
            .ubermenu .ubermenu-item.ubermenu-item-113163 > .ubermenu-target,.ubermenu .ubermenu-item.ubermenu-item-113163 > .ubermenu-content-block,.ubermenu .ubermenu-item.ubermenu-item-113163.ubermenu-custom-content-padded { padding:0 0 0 40px; }
/* 108472 */.ubermenu .ubermenu-item.ubermenu-item-108472.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-108472 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-108472.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-108472 > .ubermenu-target:hover { background:#f26101; }
/* 106396 */.ubermenu .ubermenu-item.ubermenu-item-106396.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-106396 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-106396.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-106396 > .ubermenu-target:hover { background:#116628; }
            .ubermenu .ubermenu-item.ubermenu-item-106396.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-106396:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-106396.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-106396:hover > .ubermenu-target { color:#eaeaea; }
/* 107737 */.ubermenu .ubermenu-item.ubermenu-item-107737.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-107737 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-107737.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-107737 > .ubermenu-target:hover { background:#303841; }
            .ubermenu .ubermenu-item.ubermenu-item-107737.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-107737:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-107737.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-107737:hover > .ubermenu-target { color:#eaeaea; }
/* 110813 */.ubermenu .ubermenu-item.ubermenu-item-110813.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-110813 > .ubermenu-target:hover, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110813.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110813 > .ubermenu-target:hover { background:#ae895d; }
            .ubermenu .ubermenu-item.ubermenu-item-110813.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-item.ubermenu-item-110813:hover > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110813.ubermenu-active > .ubermenu-target, .ubermenu .ubermenu-submenu .ubermenu-item.ubermenu-item-110813:hover > .ubermenu-target { color:#eaeaea; }

/* Icons */
.ubermenu .ubermenu-item-layout-icon_right > .ubermenu-target-title { margin-right: .6em; display: inline-block; }
.ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target.ubermenu-item-layout-icon_top:after, .ubermenu-sub-indicators .ubermenu-has-submenu-drop > .ubermenu-target.ubermenu-item-layout-icon_bottom:after{ top: auto; bottom:8px; right:auto; margin-left:-4px; }
.ubermenu .ubermenu-target.ubermenu-item-layout-icon_top, .ubermenu .ubermenu-target.ubermenu-item-layout-icon_bottom{ text-align:center; padding:20px; }
.ubermenu .ubermenu-target.ubermenu-item-layout-icon_top, .ubermenu .ubermenu-target.ubermenu-item-layout-icon_top > .ubermenu-target-text, .ubermenu .ubermenu-target.ubermenu-item-layout-icon_bottom > .ubermenu-target-text, .ubermenu .ubermenu-target.ubermenu-item-layout-icon_bottom > .ubermenu-icon{ text-align:center; display:block; width:100%; }
.ubermenu .ubermenu-item-layout-icon_top > .ubermenu-icon { padding-bottom:5px; }
.ubermenu .ubermenu-item-layout-icon_bottom > .ubermenu-icon { padding-top:5px; }

/* Status: Loaded from Transient */

</style>		<script type="text/javascript">
			var ajaxRevslider;
			
			jQuery(document).ready(function() {
				// CUSTOM AJAX CONTENT LOADING FUNCTION
				ajaxRevslider = function(obj) {
				
					// obj.type : Post Type
					// obj.id : ID of Content to Load
					// obj.aspectratio : The Aspect Ratio of the Container / Media
					// obj.selector : The Container Selector where the Content of Ajax will be injected. It is done via the Essential Grid on Return of Content
					
					var content = "";

					data = {};
					
					data.action = 'revslider_ajax_call_front';
					data.client_action = 'get_slider_html';
					data.token = 'd716eb35c2';
					data.type = obj.type;
					data.id = obj.id;
					data.aspectratio = obj.aspectratio;
					
					// SYNC AJAX REQUEST
					jQuery.ajax({
						type:"post",
						url:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
						dataType: 'json',
						data:data,
						async:false,
						success: function(ret, textStatus, XMLHttpRequest) {
							if(ret.success == true)
								content = ret.data;								
						},
						error: function(e) {
							console.log(e);
						}
					});
					
					 // FIRST RETURN THE CONTENT WHEN IT IS LOADED !!
					 return content;						 
				};
				
				// CUSTOM AJAX FUNCTION TO REMOVE THE SLIDER
				var ajaxRemoveRevslider = function(obj) {
					return jQuery(obj.selector+" .rev_slider").revkill();
				};

				// EXTEND THE AJAX CONTENT LOADING TYPES WITH TYPE AND FUNCTION
				var extendessential = setInterval(function() {
					if (jQuery.fn.tpessential != undefined) {
						clearInterval(extendessential);
						if(typeof(jQuery.fn.tpessential.defaults) !== 'undefined') {
							jQuery.fn.tpessential.defaults.ajaxTypes.push({type:"revslider",func:ajaxRevslider,killfunc:ajaxRemoveRevslider,openAnimationSpeed:0.3});   
							// type:  Name of the Post to load via Ajax into the Essential Grid Ajax Container
							// func: the Function Name which is Called once the Item with the Post Type has been clicked
							// killfunc: function to kill in case the Ajax Window going to be removed (before Remove function !
							// openAnimationSpeed: how quick the Ajax Content window should be animated (default is 0.3)
						}
					}
				},30);
			});
		</script>
		<!--[if lt IE 9]><script data-cfasync="false" src="https://parkourgenerations.com/wp-content/themes/dante/js/respond.min.js"></script><script data-cfasync="false" src="https://parkourgenerations.com/wp-content/themes/dante/js/html5shiv.js"></script><script data-cfasync="false" src="https://parkourgenerations.com/wp-content/themes/dante/js/excanvas.compiled.js"></script><script data-cfasync="false" src="https://parkourgenerations.com/wp-content/themes/dante/js/background_size_emu.js"></script><![endif]-->			<script type="text/javascript">
			var ajaxurl = 'https://parkourgenerations.com/wp-admin/admin-ajax.php';
			</script>
		<style type="text/css">
body, p, #commentform label, .contact-form label {font-size: 18px;line-height: 30px;}h1 {font-size: 36px;line-height: 52px;}h2 {font-size: 20px;line-height: 30px;}h3, .blog-item .quote-excerpt {font-size: 18px;line-height: 32px;}h4, .body-content.quote, #respond-wrap h3, #respond h3 {font-size: 16px;line-height: 20px;}h5 {font-size: 14px;line-height: 18px;}h6 {font-size: 12px;line-height: 16px;}nav .menu li {font-size: 14px;}::selection, ::-moz-selection {background-color: #990000; color: #fff;}.recent-post figure, span.highlighted, span.dropcap4, .loved-item:hover .loved-count, .flickr-widget li, .portfolio-grid li, input[type="submit"], .wpcf7 input.wpcf7-submit[type="submit"], .gform_wrapper input[type="submit"], .mymail-form input[type="submit"], .woocommerce-page nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li span.current, figcaption .product-added, .woocommerce .wc-new-badge, .yith-wcwl-wishlistexistsbrowse a, .yith-wcwl-wishlistaddedbrowse a, .woocommerce .widget_layered_nav ul li.chosen > *, .woocommerce .widget_layered_nav_filters ul li a, .sticky-post-icon, .fw-video-close:hover {background-color: #990000!important; color: #ffffff;}a:hover, a:focus, #sidebar a:hover, .pagination-wrap a:hover, .carousel-nav a:hover, .portfolio-pagination div:hover > i, #footer a:hover, #copyright a, .beam-me-up a:hover span, .portfolio-item .portfolio-item-permalink, .read-more-link, .blog-item .read-more, .blog-item-details a:hover, .author-link, #reply-title small a, #respond .form-submit input:hover, span.dropcap2, .spb_divider.go_to_top a, love-it-wrapper:hover .love-it, .love-it-wrapper:hover span.love-count, .love-it-wrapper .loved, .comments-likes .loved span.love-count, .comments-likes a:hover i, .comments-likes .love-it-wrapper:hover a i, .comments-likes a:hover span, .love-it-wrapper:hover a i, .item-link:hover, #header-translation p a, #swift-slider .flex-caption-large h1 a:hover, .wooslider .slide-title a:hover, .caption-details-inner .details span > a, .caption-details-inner .chart span, .caption-details-inner .chart i, #swift-slider .flex-caption-large .chart i, #breadcrumbs a:hover, .ui-widget-content a:hover, .yith-wcwl-add-button a:hover, #product-img-slider li a.zoom:hover, .woocommerce .star-rating span, .article-body-wrap .share-links a:hover, ul.member-contact li a:hover, .price ins, .bag-product a.remove:hover, .bag-product-title a:hover, #back-to-top:hover,  ul.member-contact li a:hover, .fw-video-link-image:hover i, .ajax-search-results .all-results:hover, .search-result h5 a:hover .ui-state-default a:hover {color: #52edc7;}.carousel-wrap > a:hover, #mobile-menu ul li:hover > a {color: #990000!important;}.comments-likes a:hover span, .comments-likes a:hover i {color: #990000!important;}.read-more i:before, .read-more em:before {color: #990000;}input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, .bypostauthor .comment-wrap .comment-avatar,.search-form input:focus, .wpcf7 input:focus, .wpcf7 textarea:focus, .ginput_container input:focus, .ginput_container textarea:focus, .mymail-form input:focus, .mymail-form textarea:focus {border-color: #990000!important;}nav .menu ul li:first-child:after,.navigation a:hover > .nav-text, .returning-customer a:hover {border-bottom-color: #990000;}nav .menu ul ul li:first-child:after {border-right-color: #990000;}.spb_impact_text .spb_call_text {border-left-color: #990000;}.spb_impact_text .spb_button span {color: #fff;}#respond .form-submit input#submit {border-color: #e4e4e4;background-color: #ffffff;}#respond .form-submit input#submit:hover {border-color: #990000;background-color: #990000;color: #ffffff;}.woocommerce .free-badge, .my-account-login-wrap .login-wrap form.login p.form-row input[type="submit"], .woocommerce .my-account-login-wrap form input[type="submit"] {background-color: #600000; color: #0a0000;}a[rel="tooltip"], ul.member-contact li a, .blog-item-details a, .post-info a, a.text-link, .tags-wrap .tags a, .logged-in-as a, .comment-meta-actions .edit-link, .comment-meta-actions .comment-reply, .read-more {border-color: #990000;}.super-search-go {border-color: #990000!important;}.super-search-go:hover {background: #990000!important;border-color: #990000!important;}body {color: #444444;}.pagination-wrap a, .search-pagination a {color: #444444;}.layout-boxed #header-search, .layout-boxed #super-search, body > .sf-super-search {background-color: #222222;}body {background-color: #222222;background-size: auto;}#main-container, .tm-toggle-button-wrap a {background-color: #ffffff;}a, .ui-widget-content a {color: #333333;}.pagination-wrap li a:hover, ul.bar-styling li:not(.selected) > a:hover, ul.bar-styling li > .comments-likes:hover, ul.page-numbers li > a:hover, ul.page-numbers li > span.current {color: #ffffff!important;background: #990000;border-color: #990000;}ul.bar-styling li > .comments-likes:hover * {color: #ffffff!important;}.pagination-wrap li a, .pagination-wrap li span, .pagination-wrap li span.expand, ul.bar-styling li > a, ul.bar-styling li > div, ul.page-numbers li > a, ul.page-numbers li > span, .curved-bar-styling, ul.bar-styling li > form input {border-color: #e4e4e4;}ul.bar-styling li > a, ul.bar-styling li > span, ul.bar-styling li > div, ul.bar-styling li > form input {background-color: #ffffff;}input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select {border-color: #e4e4e4;background: #f7f7f7;}textarea:focus, input:focus {border-color: #999!important;}.modal-header {background: #f7f7f7;}.recent-post .post-details, .team-member .team-member-position, .portfolio-item h5.portfolio-subtitle, .mini-items .blog-item-details, .standard-post-content .blog-item-details, .masonry-items .blog-item .blog-item-details, .jobs > li .job-date, .search-item-content time, .search-item-content span, .blog-item-details a, .portfolio-details-wrap .date,  .portfolio-details-wrap .tags-link-wrap {color: #999999;}ul.bar-styling li.facebook > a:hover {color: #fff!important;background: #3b5998;border-color: #3b5998;}ul.bar-styling li.twitter > a:hover {color: #fff!important;background: #4099FF;border-color: #4099FF;}ul.bar-styling li.google-plus > a:hover {color: #fff!important;background: #d34836;border-color: #d34836;}ul.bar-styling li.pinterest > a:hover {color: #fff!important;background: #cb2027;border-color: #cb2027;}#header-search input, #header-search a, .super-search-close, #header-search i.ss-search {color: #fff;}#header-search a:hover, .super-search-close:hover {color: #990000;}.sf-super-search, .spb_supersearch_widget.asset-bg {background-color: #600000;}.sf-super-search .search-options .ss-dropdown > span, .sf-super-search .search-options input {color: #990000; border-bottom-color: #990000;}.sf-super-search .search-options .ss-dropdown ul li .fa-check {color: #990000;}.sf-super-search-go:hover, .sf-super-search-close:hover { background-color: #990000; border-color: #990000; color: #ffffff;}#top-bar {background: #ff0000; color: #ffffff;}#top-bar .tb-welcome {border-color: #f7f7f7;}#top-bar a {color: #ffffff;}#top-bar .menu li {border-left-color: #f7f7f7; border-right-color: #f7f7f7;}#top-bar .menu > li > a, #top-bar .menu > li.parent:after {color: #ffffff;}#top-bar .menu > li > a:hover, #top-bar a:hover {color: #222222;}#top-bar .show-menu {background-color: #f7f7f7;color: #600000;}#header-languages .current-language {background: #f7f7f7; color: #000000;}#header-section:before, #header .is-sticky .sticky-header, #header-section .is-sticky #main-nav.sticky-header, #header-section.header-6 .is-sticky #header.sticky-header, .ajax-search-wrap {background-color: #ffffff;background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#ffffff));background: -webkit-linear-gradient(top, #ffffff, #ffffff);background: -moz-linear-gradient(top, #ffffff, #ffffff);background: -ms-linear-gradient(top, #ffffff, #ffffff);background: -o-linear-gradient(top, #ffffff, #ffffff);}#logo img {padding-top: 0px;padding-bottom: 0px;}#logo img, #logo img.retina {width: 270px;}#logo {height: 80px!important;}#logo img {height: 80px;min-height:80px;}.header-container > .row, .header-5 header .container > .row, .header-6 header > .container > .row {height: 100px;}@media only screen and (max-width: 991px) {#logo img {max-height:80px;}}.sticky-header-resized #logo {height: 80px!important;}.sticky-header-resized #logo img {height: 80px;}.header-container.sticky-header-resized > .row, .header-5 header .container.sticky-header-resized > .row, .header-6 header > .container.sticky-header-resized > .row, .sticky-header-resized .header-container > .row {height: 100px;}.sticky-header-resized #logo img {width: 270px;}#header-section .header-menu .menu li, #mini-header .header-right nav .menu li {border-left-color: #e4e4e4;}#header-section #main-nav {border-top-color: #e4e4e4;}#top-header {border-bottom-color: #e4e4e4;}#top-header {border-bottom-color: #e4e4e4;}#top-header .th-right > nav .menu li, .ajax-search-wrap:after {border-bottom-color: #e4e4e4;}.ajax-search-wrap, .ajax-search-results, .search-result-pt .search-result {border-color: #e4e4e4;}.page-content {border-bottom-color: #e4e4e4;}.ajax-search-wrap input[type="text"], .search-result-pt h6, .no-search-results h6, .search-result h5 a {color: #252525;}@media only screen and (max-width: 991px) {
			.naked-header #header-section, .naked-header #header-section:before, .naked-header #header .is-sticky .sticky-header, .naked-header .is-sticky #header.sticky-header {background-color: #ffffff;background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#ffffff));background: -webkit-linear-gradient(top, #ffffff, #ffffff);background: -moz-linear-gradient(top, #ffffff, #ffffff);background: -ms-linear-gradient(top, #ffffff, #ffffff);background: -o-linear-gradient(top, #ffffff, #ffffff);}
			}nav#main-navigation .menu > li > a span.nav-line {background-color: #ff0000;}.show-menu {background-color: #600000;color: #0a0000;}nav .menu > li:before {background: #ff0000;}nav .menu .sub-menu .parent > a:after {border-left-color: #ff0000;}nav .menu ul.sub-menu {background-color: #FFFFFF;}nav .menu ul.sub-menu li {border-bottom-color: #f0f0f0;border-bottom-style: solid;}nav.mega-menu li .mega .sub .sub-menu, nav.mega-menu li .mega .sub .sub-menu li, nav.mega-menu li .sub-container.non-mega li, nav.mega-menu li .sub li.mega-hdr {border-top-color: #f0f0f0;border-top-style: solid;}nav.mega-menu li .sub li.mega-hdr {border-right-color: #f0f0f0;border-right-style: solid;}nav .menu > li.menu-item > a, nav .menu > li.menu-item.indicator-disabled > a, #menubar-controls a, nav.search-nav .menu>li>a, .naked-header .is-sticky nav .menu > li a {color: #252525;}nav .menu > li.menu-item:hover > a {color: #ff0000;}nav .menu ul.sub-menu li.menu-item > a, nav .menu ul.sub-menu li > span, #top-bar nav .menu ul li > a {color: #666666;}nav .menu ul.sub-menu li.menu-item:hover > a {color: #000000!important; background: #f7f7f7;}nav .menu li.parent > a:after, nav .menu li.parent > a:after:hover {color: #aaa;}nav .menu li.current-menu-ancestor > a, nav .menu li.current-menu-item > a, #mobile-menu .menu ul li.current-menu-item > a, nav .menu li.current-scroll-item > a {color: #222222;}nav .menu ul li.current-menu-ancestor > a, nav .menu ul li.current-menu-item > a {color: #000000; background: #f7f7f7;}#main-nav .header-right ul.menu > li, .wishlist-item {border-left-color: #f0f0f0;}#nav-search, #mini-search {background: #ff0000;}#nav-search a, #mini-search a {color: #ffffff;}.bag-header, .bag-product, .bag-empty, .wishlist-empty {border-color: #f0f0f0;}.bag-buttons a.sf-button.bag-button, .bag-buttons a.sf-button.wishlist-button, .bag-buttons a.sf-button.guest-button {background-color: #e4e4e4; color: #444444!important;}.bag-buttons a.checkout-button, .bag-buttons a.create-account-button, .woocommerce input.button.alt, .woocommerce .alt-button, .woocommerce button.button.alt, .woocommerce #account_details .login form p.form-row input[type="submit"], #login-form .modal-body form.login p.form-row input[type="submit"] {background: #600000; color: #0a0000;}.woocommerce .button.update-cart-button:hover, .woocommerce #account_details .login form p.form-row input[type="submit"]:hover, #login-form .modal-body form.login p.form-row input[type="submit"]:hover {background: #990000; color: #ffffff;}.woocommerce input.button.alt:hover, .woocommerce .alt-button:hover, .woocommerce button.button.alt:hover {background: #990000; color: #ffffff;}.shopping-bag:before, nav .menu ul.sub-menu li:first-child:before {border-bottom-color: #ff0000;}nav ul.menu > li.menu-item.sf-menu-item-btn > a {background-color: #ff0000;color: #252525;}nav ul.menu > li.menu-item.sf-menu-item-btn:hover > a {color: #ff0000;background-color: #252525;}#base-promo {background-color: #e4e4e4;}#base-promo > p, #base-promo.footer-promo-text > a, #base-promo.footer-promo-arrow > a {color: #222;}#base-promo.footer-promo-arrow:hover, #base-promo.footer-promo-text:hover {background-color: #990000;color: #ffffff;}#base-promo.footer-promo-arrow:hover > *, #base-promo.footer-promo-text:hover > * {color: #ffffff;}.page-heading {background-color: #f7f7f7;border-bottom-color: #e4e4e4;}.page-heading h1, .page-heading h3 {color: #222222;}#breadcrumbs {color: #333333;}#breadcrumbs a, #breadcrumb i {color: #333333;}body, input[type="text"], input[type="password"], input[type="email"], textarea, select, .ui-state-default a {color: #444444;}h1, h1 a {color: #000000;}h2, h2 a {color: #000000;}h3, h3 a {color: #000000;}h4, h4 a, .carousel-wrap > a {color: #000000;}h5, h5 a {color: #000000;}h6, h6 a {color: #000000;}.spb_impact_text .spb_call_text, .impact-text, .impact-text-large {color: #000000;}.read-more i, .read-more em {color: transparent;}.pb-border-bottom, .pb-border-top, .read-more-button {border-color: #e4e4e4;}#swift-slider ul.slides {background: #600000;}#swift-slider .flex-caption .flex-caption-headline {background: #ffffff;}#swift-slider .flex-caption .flex-caption-details .caption-details-inner {background: #ffffff; border-bottom: #e4e4e4}#swift-slider .flex-caption-large, #swift-slider .flex-caption-large h1 a {color: #0a0000;}#swift-slider .flex-caption h4 i {line-height: 20px;}#swift-slider .flex-caption-large .comment-chart i {color: #0a0000;}#swift-slider .flex-caption-large .loveit-chart span {color: #990000;}#swift-slider .flex-caption-large a {color: #990000;}#swift-slider .flex-caption .comment-chart i, #swift-slider .flex-caption .comment-chart span {color: #600000;}figure.animated-overlay figcaption {background-color: #990000;}
figure.animated-overlay figcaption .thumb-info h4, figure.animated-overlay figcaption .thumb-info h5, figcaption .thumb-info-excerpt p {color: #ffffff;}figure.animated-overlay figcaption .thumb-info i {background: #600000; color: #0a0000;}figure:hover .overlay {box-shadow: inset 0 0 0 500px #990000;}h4.spb-heading span:before, h4.spb-heading span:after, h3.spb-heading span:before, h3.spb-heading span:after, h4.lined-heading span:before, h4.lined-heading span:after {border-color: #e4e4e4}h4.spb-heading:before, h3.spb-heading:before, h4.lined-heading:before {border-top-color: #e4e4e4}.spb_parallax_asset h4.spb-heading {border-bottom-color: #000000}.testimonials.carousel-items li .testimonial-text {background-color: #f7f7f7;}.sidebar .widget-heading h4 {color: #000000;}.widget ul li, .widget.widget_lip_most_loved_widget li {border-color: #e4e4e4;}.widget.widget_lip_most_loved_widget li {background: #ffffff; border-color: #e4e4e4;}.widget_lip_most_loved_widget .loved-item > span {color: #999999;}.widget_search form input {background: #ffffff;}.widget .wp-tag-cloud li a {background: #f7f7f7; border-color: #e4e4e4;}.widget .tagcloud a:hover, .widget ul.wp-tag-cloud li:hover > a {background-color: #990000; color: #ffffff;}.loved-item .loved-count > i {color: #444444;background: #e4e4e4;}.subscribers-list li > a.social-circle {color: #0a0000;background: #600000;}.subscribers-list li:hover > a.social-circle {color: #fbfbfb;background: #990000;}.sidebar .widget_categories ul > li a, .sidebar .widget_archive ul > li a, .sidebar .widget_nav_menu ul > li a, .sidebar .widget_meta ul > li a, .sidebar .widget_recent_entries ul > li, .widget_product_categories ul > li a, .widget_layered_nav ul > li a {color: #333333;}.sidebar .widget_categories ul > li a:hover, .sidebar .widget_archive ul > li a:hover, .sidebar .widget_nav_menu ul > li a:hover, .widget_nav_menu ul > li.current-menu-item a, .sidebar .widget_meta ul > li a:hover, .sidebar .widget_recent_entries ul > li a:hover, .widget_product_categories ul > li a:hover, .widget_layered_nav ul > li a:hover {color: #990000;}#calendar_wrap caption {border-bottom-color: #600000;}.sidebar .widget_calendar tbody tr > td a {color: #0a0000;background-color: #600000;}.sidebar .widget_calendar tbody tr > td a:hover {background-color: #990000;}.sidebar .widget_calendar tfoot a {color: #600000;}.sidebar .widget_calendar tfoot a:hover {color: #990000;}.widget_calendar #calendar_wrap, .widget_calendar th, .widget_calendar tbody tr > td, .widget_calendar tbody tr > td.pad {border-color: #e4e4e4;}.widget_sf_infocus_widget .infocus-item h5 a {color: #600000;}.widget_sf_infocus_widget .infocus-item h5 a:hover {color: #990000;}.sidebar .widget hr {border-color: #e4e4e4;}.widget ul.flickr_images li a:after, .portfolio-grid li a:after {color: #ffffff;}.slideout-filter .select:after {background: #ffffff;}.slideout-filter ul li a {color: #ffffff;}.slideout-filter ul li a:hover {color: #990000;}.slideout-filter ul li.selected a {color: #ffffff;background: #990000;}ul.portfolio-filter-tabs li.selected a {background: #f7f7f7;}.spb_blog_widget .filter-wrap {background-color: #222;}.portfolio-item {border-bottom-color: #e4e4e4;}.masonry-items .portfolio-item-details {background: #f7f7f7;}.spb_portfolio_carousel_widget .portfolio-item {background: #ffffff;}.spb_portfolio_carousel_widget .portfolio-item h4.portfolio-item-title a > i {line-height: 20px;}.masonry-items .blog-item .blog-details-wrap:before {background-color: #f7f7f7;}.masonry-items .portfolio-item figure {border-color: #e4e4e4;}.portfolio-details-wrap span span {color: #666;}.share-links > a:hover {color: #990000;}.blog-aux-options li.selected a {background: #990000;border-color: #990000;color: #ffffff;}.blog-filter-wrap .aux-list li:hover {border-bottom-color: transparent;}.blog-filter-wrap .aux-list li:hover a {color: #ffffff;background: #990000;}.mini-blog-item-wrap, .mini-items .mini-alt-wrap, .mini-items .mini-alt-wrap .quote-excerpt, .mini-items .mini-alt-wrap .link-excerpt, .masonry-items .blog-item .quote-excerpt, .masonry-items .blog-item .link-excerpt, .standard-post-content .quote-excerpt, .standard-post-content .link-excerpt, .timeline, .post-info, .body-text .link-pages, .page-content .link-pages {border-color: #e4e4e4;}.post-info, .article-body-wrap .share-links .share-text, .article-body-wrap .share-links a {color: #999999;}.standard-post-date {background: #e4e4e4;}.standard-post-content {background: #f7f7f7;}.format-quote .standard-post-content:before, .standard-post-content.no-thumb:before {border-left-color: #f7f7f7;}.search-item-img .img-holder {background: #f7f7f7;border-color:#e4e4e4;}.masonry-items .blog-item .masonry-item-wrap {background: #f7f7f7;}.mini-items .blog-item-details, .share-links, .single-portfolio .share-links, .single .pagination-wrap, ul.portfolio-filter-tabs li a {border-color: #e4e4e4;}.related-item figure {background-color: #600000; color: #0a0000}.required {color: #ee3c59;}.comments-likes a i, .comments-likes a span, .comments-likes .love-it-wrapper a i, .comments-likes span.love-count, .share-links ul.bar-styling > li > a {color: #999999;}#respond .form-submit input:hover {color: #fff!important;}.recent-post {background: #ffffff;}.recent-post .post-item-details {border-top-color: #e4e4e4;color: #e4e4e4;}.post-item-details span, .post-item-details a, .post-item-details .comments-likes a i, .post-item-details .comments-likes a span {color: #999999;}.sf-button.accent {color: #ffffff; background-color: #990000;}.sf-button.sf-icon-reveal.accent {color: #ffffff!important; background-color: #990000!important;}.sf-button.accent:hover {background-color: #600000;color: #0a0000;}a.sf-button, a.sf-button:hover, #footer a.sf-button:hover {background-image: none;color: #fff!important;}a.sf-button.gold, a.sf-button.gold:hover, a.sf-button.lightgrey, a.sf-button.lightgrey:hover, a.sf-button.white, a.sf-button.white:hover {color: #222!important;}a.sf-button.transparent-dark {color: #444444!important;}a.sf-button.transparent-light:hover, a.sf-button.transparent-dark:hover {color: #990000!important;} input[type="submit"], .wpcf7 input.wpcf7-submit[type="submit"], .gform_wrapper input[type="submit"], .mymail-form input[type="submit"] {color: #fff;}input[type="submit"]:hover, .wpcf7 input.wpcf7-submit[type="submit"]:hover, .gform_wrapper input[type="submit"]:hover, .mymail-form input[type="submit"]:hover {background-color: #600000!important;color: #0a0000;}input[type="text"], input[type="email"], input[type="password"], textarea, select, .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea, .wpcf7 select, .ginput_container input[type="text"], .ginput_container input[type="email"], .ginput_container textarea, .ginput_container select, .mymail-form input[type="text"], .mymail-form input[type="email"], .mymail-form textarea, .mymail-form select {background: #f7f7f7; border-color: #e4e4e4;}.sf-icon {color: #0a0000;}.sf-icon-cont {border-color: rgba(153,0,0,0.5);}.sf-icon-cont:hover, .sf-hover .sf-icon-cont, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont, .sf-hover .sf-icon-box-hr {background-color: #990000;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont:after {border-top-color: #990000;border-left-color: #990000;}.sf-icon-cont:hover .sf-icon, .sf-hover .sf-icon-cont .sf-icon, .sf-icon-box.sf-icon-box-boxed-one .sf-icon, .sf-icon-box.sf-icon-box-boxed-three .sf-icon {color: #ffffff;}.sf-icon-box-animated .front {background: #f7f7f7; border-color: #e4e4e4;}.sf-icon-box-animated .front h3 {color: #444444!important;}.sf-icon-box-animated .back {background: #990000; border-color: #990000;}.sf-icon-box-animated .back, .sf-icon-box-animated .back h3 {color: #ffffff!important;}.sf-icon-accent.sf-icon-cont, .sf-icon-accent > i {color: #990000;}.sf-icon-cont.sf-icon-accent {border-color: #990000;}.sf-icon-cont.sf-icon-accent:hover, .sf-hover .sf-icon-cont.sf-icon-accent, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-accent, .sf-hover .sf-icon-box-hr.sf-icon-accent {background-color: #990000;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-accent:after {border-top-color: #990000;border-left-color: #990000;}.sf-icon-cont.sf-icon-accent:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-accent .sf-icon {color: #ffffff;}.sf-icon-secondary-accent.sf-icon-cont, .sf-icon-secondary-accent > i {color: #600000;}.sf-icon-cont.sf-icon-secondary-accent {border-color: #600000;}.sf-icon-cont.sf-icon-secondary-accent:hover, .sf-hover .sf-icon-cont.sf-icon-secondary-accent, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-secondary-accent, .sf-hover .sf-icon-box-hr.sf-icon-secondary-accent {background-color: #600000;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-secondary-accent:after {border-top-color: #600000;border-left-color: #600000;}.sf-icon-cont.sf-icon-secondary-accent:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-secondary-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-secondary-accent .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-secondary-accent .sf-icon {color: #0a0000;}.sf-icon-box-animated .back.sf-icon-secondary-accent {background: #600000; border-color: #600000;}.sf-icon-box-animated .back.sf-icon-secondary-accent, .sf-icon-box-animated .back.sf-icon-secondary-accent h3 {color: #0a0000!important;}.sf-icon-icon-one.sf-icon-cont, .sf-icon-icon-one > i, i.sf-icon-icon-one {color: #FF9900;}.sf-icon-cont.sf-icon-icon-one {border-color: #FF9900;}.sf-icon-cont.sf-icon-icon-one:hover, .sf-hover .sf-icon-cont.sf-icon-icon-one, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-one, .sf-hover .sf-icon-box-hr.sf-icon-icon-one {background-color: #FF9900;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-one:after {border-top-color: #FF9900;border-left-color: #FF9900;}.sf-icon-cont.sf-icon-icon-one:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-one .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-one .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-one .sf-icon {color: #FFFFFF;}.sf-icon-box-animated .back.sf-icon-icon-one {background: #FF9900; border-color: #FF9900;}.sf-icon-box-animated .back.sf-icon-icon-one, .sf-icon-box-animated .back.sf-icon-icon-one h3 {color: #FFFFFF!important;}.sf-icon-icon-two.sf-icon-cont, .sf-icon-icon-two > i, i.sf-icon-icon-two {color: #339933;}.sf-icon-cont.sf-icon-icon-two {border-color: #339933;}.sf-icon-cont.sf-icon-icon-two:hover, .sf-hover .sf-icon-cont.sf-icon-icon-two, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-two, .sf-hover .sf-icon-box-hr.sf-icon-icon-two {background-color: #339933;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-two:after {border-top-color: #339933;border-left-color: #339933;}.sf-icon-cont.sf-icon-icon-two:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-two .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-two .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-two .sf-icon {color: #FFFFFF;}.sf-icon-box-animated .back.sf-icon-icon-two {background: #339933; border-color: #339933;}.sf-icon-box-animated .back.sf-icon-icon-two, .sf-icon-box-animated .back.sf-icon-icon-two h3 {color: #FFFFFF!important;}.sf-icon-icon-three.sf-icon-cont, .sf-icon-icon-three > i, i.sf-icon-icon-three {color: #CCCCCC;}.sf-icon-cont.sf-icon-icon-three {border-color: #CCCCCC;}.sf-icon-cont.sf-icon-icon-three:hover, .sf-hover .sf-icon-cont.sf-icon-icon-three, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-three, .sf-hover .sf-icon-box-hr.sf-icon-icon-three {background-color: #CCCCCC;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-three:after {border-top-color: #CCCCCC;border-left-color: #CCCCCC;}.sf-icon-cont.sf-icon-icon-three:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-three .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-three .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-three .sf-icon {color: #222222;}.sf-icon-box-animated .back.sf-icon-icon-three {background: #CCCCCC; border-color: #CCCCCC;}.sf-icon-box-animated .back.sf-icon-icon-three, .sf-icon-box-animated .back.sf-icon-icon-three h3 {color: #222222!important;}.sf-icon-icon-four.sf-icon-cont, .sf-icon-icon-four > i, i.sf-icon-icon-four {color: #3b5998;}.sf-icon-cont.sf-icon-icon-four {border-color: #3b5998;}.sf-icon-cont.sf-icon-icon-four:hover, .sf-hover .sf-icon-cont.sf-icon-icon-four, .sf-icon-box[class*="icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-four, .sf-hover .sf-icon-box-hr.sf-icon-icon-four {background-color: #3b5998;}.sf-icon-box[class*="sf-icon-box-boxed-"] .sf-icon-cont.sf-icon-icon-four:after {border-top-color: #3b5998;border-left-color: #3b5998;}.sf-icon-cont.sf-icon-icon-four:hover .sf-icon, .sf-hover .sf-icon-cont.sf-icon-icon-four .sf-icon, .sf-icon-box.sf-icon-box-boxed-one.sf-icon-icon-four .sf-icon, .sf-icon-box.sf-icon-box-boxed-three.sf-icon-icon-four .sf-icon {color: #FFFFFF;}.sf-icon-box-animated .back.sf-icon-icon-four {background: #3b5998; border-color: #3b5998;}.sf-icon-box-animated .back.sf-icon-icon-four, .sf-icon-box-animated .back.sf-icon-icon-four h3 {color: #FFFFFF!important;}span.dropcap3 {background: #000;color: #fff;}span.dropcap4 {color: #fff;}.spb_divider, .spb_divider.go_to_top_icon1, .spb_divider.go_to_top_icon2, .testimonials > li, .jobs > li, .spb_impact_text, .tm-toggle-button-wrap, .tm-toggle-button-wrap a, .portfolio-details-wrap, .spb_divider.go_to_top a, .impact-text-wrap, .widget_search form input, .asset-bg.spb_divider {border-color: #e4e4e4;}.spb_divider.go_to_top_icon1 a, .spb_divider.go_to_top_icon2 a {background: #ffffff;}.spb_tabs .ui-tabs .ui-tabs-panel, .spb_content_element .ui-tabs .ui-tabs-nav, .ui-tabs .ui-tabs-nav li {border-color: #e4e4e4;}.spb_tabs .ui-tabs .ui-tabs-panel, .ui-tabs .ui-tabs-nav li.ui-tabs-active a {background: #ffffff!important;}.spb_tabs .nav-tabs li a, .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus, .spb_accordion .spb_accordion_section, .spb_tour .nav-tabs li a {border-color: #e4e4e4;}.spb_tabs .nav-tabs li.active a, .spb_tour .nav-tabs li.active a, .spb_accordion .spb_accordion_section > h3.ui-state-active a {background-color: #f7f7f7;}.spb_tour .ui-tabs .ui-tabs-nav li a {border-color: #e4e4e4;}.spb_tour.span3 .ui-tabs .ui-tabs-nav li {border-color: #e4e4e4!important;}.toggle-wrap .spb_toggle, .spb_toggle_content {border-color: #e4e4e4;}.toggle-wrap .spb_toggle:hover {color: #990000;}.ui-accordion h3.ui-accordion-header .ui-icon {color: #444444;}.ui-accordion h3.ui-accordion-header.ui-state-active:hover a, .ui-accordion h3.ui-accordion-header:hover .ui-icon {color: #990000;}blockquote.pullquote {border-color: #990000;}.borderframe img {border-color: #eeeeee;}.labelled-pricing-table .column-highlight {background-color: #fff;}.labelled-pricing-table .pricing-table-label-row, .labelled-pricing-table .pricing-table-row {background: #f7f7f7;}.labelled-pricing-table .alt-row {background: #fff;}.labelled-pricing-table .pricing-table-price {background: #e4e4e4;}.labelled-pricing-table .pricing-table-package {background: #f7f7f7;}.labelled-pricing-table .lpt-button-wrap {background: #e4e4e4;}.labelled-pricing-table .lpt-button-wrap a.accent {background: #222!important;}.labelled-pricing-table .column-highlight .lpt-button-wrap {background: transparent!important;}.labelled-pricing-table .column-highlight .lpt-button-wrap a.accent {background: #990000!important;}.column-highlight .pricing-table-price {color: #fff;background: #00AEEF;border-bottom-color: #00AEEF;}.column-highlight .pricing-table-package {background: #B4E5F8;}.column-highlight .pricing-table-details {background: #E1F3FA;}.spb_box_text.coloured .box-content-wrap {background: #990000;color: #fff;}.spb_box_text.whitestroke .box-content-wrap {background-color: #fff;border-color: #e4e4e4;}.client-item figure {border-color: #e4e4e4;}.client-item figure:hover {border-color: #333;}ul.member-contact li a:hover {color: #333;}.testimonials.carousel-items li .testimonial-text {border-color: #e4e4e4;}.testimonials.carousel-items li .testimonial-text:after {border-left-color: #e4e4e4;border-top-color: #e4e4e4;}.team-member figure figcaption {background: #f7f7f7;}.horizontal-break {background-color: #e4e4e4;}.progress .bar {background-color: #990000;}.progress.standard .bar {background: #990000;}.progress-bar-wrap .progress-value {color: #990000;}.asset-bg-detail {background:#ffffff;border-color:#e4e4e4;}#footer {background: #252525;}#footer, #footer p {color: #ffffff;}#footer h6 {color: #ffffff;}#footer a {color: #ffffff;}#footer .widget ul li, #footer .widget_categories ul, #footer .widget_archive ul, #footer .widget_nav_menu ul, #footer .widget_recent_comments ul, #footer .widget_meta ul, #footer .widget_recent_entries ul, #footer .widget_product_categories ul {border-color: #333333;}#copyright {background-color: #252525;border-top-color: #333333;}#copyright p {color: #999999;}#copyright a {color: #ffffff;}#copyright a:hover {color: #e4e4e4;}#copyright nav .menu li {border-left-color: #333333;}#footer .widget_calendar #calendar_wrap, #footer .widget_calendar th, #footer .widget_calendar tbody tr > td, #footer .widget_calendar tbody tr > td.pad {border-color: #333333;}.widget input[type="email"] {background: #f7f7f7; color: #999}#footer .widget hr {border-color: #333333;}.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span, .modal-body .comment-form-rating, .woocommerce form .form-row input.input-text, ul.checkout-process, #billing .proceed, ul.my-account-nav > li, .woocommerce #payment, .woocommerce-checkout p.thank-you, .woocommerce .order_details, .woocommerce-page .order_details, .woocommerce ul.products li.product figure figcaption .yith-wcwl-add-to-wishlist, #product-accordion .panel, .review-order-wrap { border-color: #e4e4e4 ;}nav.woocommerce-pagination ul li span.current, nav.woocommerce-pagination ul li a:hover {background:#990000!important;border-color:#990000;color: #ffffff!important;}.woocommerce-account p.myaccount_address, .woocommerce-account .page-content h2, p.no-items, #order_review table.shop_table, #payment_heading, .returning-customer a {border-bottom-color: #e4e4e4;}.woocommerce .products ul, .woocommerce ul.products, .woocommerce-page .products ul, .woocommerce-page ul.products, p.no-items {border-top-color: #e4e4e4;}.woocommerce-ordering .woo-select, .variations_form .woo-select, .add_review a, .woocommerce .quantity, .woocommerce-page .quantity, .woocommerce .coupon input.apply-coupon, .woocommerce table.shop_table tr td.product-remove .remove, .woocommerce .button.update-cart-button, .shipping-calculator-form .woo-select, .woocommerce .shipping-calculator-form .update-totals-button button, .woocommerce #billing_country_field .woo-select, .woocommerce #shipping_country_field .woo-select, .woocommerce #review_form #respond .form-submit input, .woocommerce form .form-row input.input-text, .woocommerce table.my_account_orders .order-actions .button, .woocommerce #payment div.payment_box, .woocommerce .widget_price_filter .price_slider_amount .button, .woocommerce.widget .buttons a, .load-more-btn {background: #f7f7f7; color: #600000}.woocommerce-page nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li span.current { color: #ffffff;}li.product figcaption a.product-added {color: #ffffff;}.woocommerce ul.products li.product figure figcaption, .yith-wcwl-add-button a, ul.products li.product a.quick-view-button, .yith-wcwl-add-to-wishlist, .woocommerce form.cart button.single_add_to_cart_button, .woocommerce p.cart a.single_add_to_cart_button, .lost_reset_password p.form-row input[type="submit"], .track_order p.form-row input[type="submit"], .change_password_form p input[type="submit"], .woocommerce form.register input[type="submit"], .woocommerce .wishlist_table tr td.product-add-to-cart a, .woocommerce input.button[name="save_address"], .woocommerce .woocommerce-message a.button {background: #f7f7f7;}.woocommerce ul.products li.product figure figcaption .shop-actions > a, .woocommerce .wishlist_table tr td.product-add-to-cart a {color: #444444;}.woocommerce ul.products li.product figure figcaption .shop-actions > a.product-added, .woocommerce ul.products li.product figure figcaption .shop-actions > a.product-added:hover {color: #ffffff;}ul.products li.product .product-details .posted_in a {color: #999999;}.woocommerce ul.products li.product figure figcaption .shop-actions > a:hover, ul.products li.product .product-details .posted_in a:hover {color: #990000;}.woocommerce form.cart button.single_add_to_cart_button, .woocommerce p.cart a.single_add_to_cart_button, .woocommerce input[name="save_account_details"] { background: #f7f7f7!important; color: #444444 ;}
.woocommerce form.cart button.single_add_to_cart_button:disabled, .woocommerce form.cart button.single_add_to_cart_button:disabled[disabled] { background: #f7f7f7!important; color: #444444 ;}
.woocommerce form.cart button.single_add_to_cart_button:hover, .woocommerce .button.checkout-button, .woocommerce .wc-proceed-to-checkout > a.checkout-button { background: #990000!important; color: #ffffff ;}
.woocommerce p.cart a.single_add_to_cart_button:hover, .woocommerce .button.checkout-button:hover, .woocommerce .wc-proceed-to-checkout > a.checkout-button:hover {background: #600000!important; color: #990000!important;}.woocommerce table.shop_table tr td.product-remove .remove:hover, .woocommerce .coupon input.apply-coupon:hover, .woocommerce .shipping-calculator-form .update-totals-button button:hover, .woocommerce .quantity .plus:hover, .woocommerce .quantity .minus:hover, .add_review a:hover, .woocommerce #review_form #respond .form-submit input:hover, .lost_reset_password p.form-row input[type="submit"]:hover, .track_order p.form-row input[type="submit"]:hover, .change_password_form p input[type="submit"]:hover, .woocommerce table.my_account_orders .order-actions .button:hover, .woocommerce .widget_price_filter .price_slider_amount .button:hover, .woocommerce.widget .buttons a:hover, .woocommerce .wishlist_table tr td.product-add-to-cart a:hover, .woocommerce input.button[name="save_address"]:hover, .woocommerce input[name="apply_coupon"]:hover, .woocommerce button[name="apply_coupon"]:hover, .woocommerce .cart input[name="update_cart"]:hover, .woocommerce form.register input[type="submit"]:hover, .woocommerce form.cart button.single_add_to_cart_button:hover, .woocommerce form.cart .yith-wcwl-add-to-wishlist a:hover, .load-more-btn:hover, .woocommerce-account input[name="change_password"]:hover {background: #990000; color: #ffffff;}.woocommerce-MyAccount-navigation li {border-color: #e4e4e4;}.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation li a:hover {color: #444444;}.woocommerce #account_details .login, .woocommerce #account_details .login h4.lined-heading span, .my-account-login-wrap .login-wrap, .my-account-login-wrap .login-wrap h4.lined-heading span, .woocommerce div.product form.cart table div.quantity {background: #f7f7f7;}.woocommerce .help-bar ul li a:hover, .woocommerce .continue-shopping:hover, .woocommerce .address .edit-address:hover, .my_account_orders td.order-number a:hover, .product_meta a.inline:hover { border-bottom-color: #990000;}.woocommerce .order-info, .woocommerce .order-info mark {background: #990000; color: #ffffff;}.woocommerce #payment div.payment_box:after {border-bottom-color: #f7f7f7;}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {background: #e4e4e4;}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {background: #f7f7f7;}.yith-wcwl-wishlistexistsbrowse a:hover, .yith-wcwl-wishlistaddedbrowse a:hover {color: #ffffff;}.woocommerce ul.products li.product .price, .woocommerce div.product p.price {color: #444444;}.woocommerce ul.products li.product-category .product-cat-info {background: #e4e4e4;}.woocommerce ul.products li.product-category .product-cat-info:before {border-bottom-color:#e4e4e4;}.woocommerce ul.products li.product-category a:hover .product-cat-info {background: #990000; color: #ffffff;}.woocommerce ul.products li.product-category a:hover .product-cat-info h3 {color: #ffffff!important;}.woocommerce ul.products li.product-category a:hover .product-cat-info:before {border-bottom-color:#990000;}.woocommerce input[name="apply_coupon"], .woocommerce button[name="apply_coupon"], .woocommerce .cart input[name="update_cart"], .woocommerce .shipping-calc-wrap button[name="calc_shipping"], .woocommerce-account input[name="change_password"] {background: #f7f7f7!important; color: #600000!important}.woocommerce input[name="apply_coupon"]:hover, .woocommerce button[name="apply_coupon"]:hover, .woocommerce .cart input[name="update_cart"]:hover, .woocommerce .shipping-calc-wrap button[name="calc_shipping"]:hover, .woocommerce-account input[name="change_password"]:hover, .woocommerce input[name="save_account_details"]:hover {background: #990000!important; color: #ffffff!important;}#buddypress .activity-meta a, #buddypress .acomment-options a, #buddypress #member-group-links li a {border-color: #e4e4e4;}#buddypress .activity-meta a:hover, #buddypress .acomment-options a:hover, #buddypress #member-group-links li a:hover {border-color: #990000;}#buddypress .activity-header a, #buddypress .activity-read-more a {border-color: #990000;}#buddypress #members-list .item-meta .activity, #buddypress .activity-header p {color: #999999;}#buddypress .pagination-links span, #buddypress .load-more.loading a {background-color: #990000;color: #ffffff;border-color: #990000;}span.bbp-admin-links a, li.bbp-forum-info .bbp-forum-content {color: #999999;}span.bbp-admin-links a:hover {color: #990000;}.bbp-topic-action #favorite-toggle a, .bbp-topic-action #subscription-toggle a, .bbp-single-topic-meta a, .bbp-topic-tags a, #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic, #bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer, #bbp-user-navigation ul li a, .bbp-pagination-links a, #bbp-your-profile fieldset input, #bbp-your-profile fieldset textarea, #bbp-your-profile, #bbp-your-profile fieldset {border-color: #e4e4e4;}.bbp-topic-action #favorite-toggle a:hover, .bbp-topic-action #subscription-toggle a:hover, .bbp-single-topic-meta a:hover, .bbp-topic-tags a:hover, #bbp-user-navigation ul li a:hover, .bbp-pagination-links a:hover {border-color: #990000;}#bbp-user-navigation ul li.current a, .bbp-pagination-links span.current {border-color: #990000;background: #990000; color: #ffffff;}#bbpress-forums fieldset.bbp-form button[type="submit"], #bbp_user_edit_submit {background: #f7f7f7; color: #600000}#bbpress-forums fieldset.bbp-form button[type="submit"]:hover, #bbp_user_edit_submit:hover {background: #990000; color: #ffffff;}.asset-bg {border-color: #e4e4e4;}.asset-bg.alt-one {background-color: ;}.asset-bg.alt-one {background-image: url(//www.parkourgeneration.com/wp-content/uploads/2014/04/snow.png); background-repeat: repeat; background-position: center top; background-size:auto;}.asset-bg.alt-one, .asset-bg .alt-one, .asset-bg.alt-one h1, .asset-bg.alt-one h2, .asset-bg.alt-one h3, .asset-bg.alt-one h3, .asset-bg.alt-one h4, .asset-bg.alt-one h5, .asset-bg.alt-one h6, .alt-one .carousel-wrap > a {color: #111111;}.asset-bg.alt-one h4.spb-center-heading span:before, .asset-bg.alt-one h4.spb-center-heading span:after {border-color: #111111;}.alt-one .full-width-text:after {border-top-color:;}.alt-one h4.spb-text-heading, .alt-one h4.spb-heading {border-bottom-color:#111111;}.asset-bg.alt-two {background-color: ;}.asset-bg.alt-two {background-image: url(//www.parkourgeneration.com/wp-content/uploads/2014/04/white_texture.png); background-repeat: repeat; background-position: center top; background-size:auto;}.asset-bg.alt-two, .asset-bg .alt-two, .asset-bg.alt-two h1, .asset-bg.alt-two h2, .asset-bg.alt-two h3, .asset-bg.alt-two h3, .asset-bg.alt-two h4, .asset-bg.alt-two h5, .asset-bg.alt-two h6, .alt-two .carousel-wrap > a {color: #222222;}.asset-bg.alt-two h4.spb-center-heading span:before, .asset-bg.alt-two h4.spb-center-heading span:after {border-color: #222222;}.alt-two .full-width-text:after {border-top-color:;}.alt-two h4.spb-text-heading, .alt-two h4.spb-heading {border-bottom-color:#222222;}.asset-bg.alt-three {background-color: #FFFFFF;}.asset-bg.alt-three {background-image: url(//www.parkourgeneration.com/wp-content/uploads/2014/04/square_bg.png); background-repeat: repeat; background-position: center top; background-size:auto;}.asset-bg.alt-three, .asset-bg .alt-three, .asset-bg.alt-three h1, .asset-bg.alt-three h2, .asset-bg.alt-three h3, .asset-bg.alt-three h3, .asset-bg.alt-three h4, .asset-bg.alt-three h5, .asset-bg.alt-three h6, .alt-three .carousel-wrap > a {color: #222222;}.asset-bg.alt-three h4.spb-center-heading span:before, .asset-bg.alt-three h4.spb-center-heading span:after {border-color: #222222;}.alt-three .full-width-text:after {border-top-color:#FFFFFF;}.alt-three h4.spb-text-heading, .alt-three h4.spb-heading {border-bottom-color:#222222;}.asset-bg.alt-four {background-color: #FFFFFF;}.asset-bg.alt-four {background-image: url(//www.parkourgeneration.com/wp-content/uploads/2014/04/shattered.png); background-repeat: repeat; background-position: center top; background-size:auto;}.asset-bg.alt-four, .asset-bg .alt-four, .asset-bg.alt-four h1, .asset-bg.alt-four h2, .asset-bg.alt-four h3, .asset-bg.alt-four h3, .asset-bg.alt-four h4, .asset-bg.alt-four h5, .asset-bg.alt-four h6, .alt-four .carousel-wrap > a {color: #222222;}.asset-bg.alt-four h4.spb-center-heading span:before, .asset-bg.alt-four h4.spb-center-heading span:after {border-color: #222222;}.alt-four .full-width-text:after {border-top-color:#FFFFFF;}.alt-four h4.spb-text-heading, .alt-four h4.spb-heading {border-bottom-color:#222222;}.asset-bg.alt-five {background-color: #FFFFFF;}.asset-bg.alt-five {background-image: url(//www.parkourgeneration.com/wp-content/uploads/2014/04/ptn_bright_squares@2x.png); background-repeat: repeat; background-position: center top; background-size:auto;}.asset-bg.alt-five, .asset-bg .alt-five, .asset-bg.alt-five h1, .asset-bg.alt-five h2, .asset-bg.alt-five h3, .asset-bg.alt-five h3, .asset-bg.alt-five h4, .asset-bg.alt-five h5, .asset-bg.alt-five h6, .alt-five .carousel-wrap > a {color: #222222;}.asset-bg.alt-five h4.spb-center-heading span:before, .asset-bg.alt-five h4.spb-center-heading span:after {border-color: #222222;}.alt-five .full-width-text:after {border-top-color:#FFFFFF;}.alt-five h4.spb-text-heading, .alt-five h4.spb-heading {border-bottom-color:#222222;}.asset-bg.alt-six {background-color: #990000;}.asset-bg.alt-six, .asset-bg .alt-six, .asset-bg.alt-six h1, .asset-bg.alt-six h2, .asset-bg.alt-six h3, .asset-bg.alt-six h3, .asset-bg.alt-six h4, .asset-bg.alt-six h5, .asset-bg.alt-six h6, .alt-six .carousel-wrap > a {color: #ffffff;}.asset-bg.alt-six h4.spb-center-heading span:before, .asset-bg.alt-six h4.spb-center-heading span:after {border-color: #ffffff;}.alt-six .full-width-text:after {border-top-color:#990000;}.alt-six h4.spb-text-heading, .alt-six h4.spb-heading {border-bottom-color:#ffffff;}.asset-bg.alt-seven {background-color: #007a00;}.asset-bg.alt-seven, .asset-bg .alt-seven, .asset-bg.alt-seven h1, .asset-bg.alt-seven h2, .asset-bg.alt-seven h3, .asset-bg.alt-seven h3, .asset-bg.alt-seven h4, .asset-bg.alt-seven h5, .asset-bg.alt-seven h6, .alt-seven .carousel-wrap > a {color: #ffffff;}.asset-bg.alt-seven h4.spb-center-heading span:before, .asset-bg.alt-seven h4.spb-center-heading span:after {border-color: #ffffff;}.alt-seven .full-width-text:after {border-top-color:#007a00;}.alt-seven h4.spb-text-heading, .alt-seven h4.spb-heading {border-bottom-color:#ffffff;}.asset-bg.alt-eight {background-color: #3b5998;}.asset-bg.alt-eight, .asset-bg .alt-eight, .asset-bg.alt-eight h1, .asset-bg.alt-eight h2, .asset-bg.alt-eight h3, .asset-bg.alt-eight h3, .asset-bg.alt-eight h4, .asset-bg.alt-eight h5, .asset-bg.alt-eight h6, .alt-eight .carousel-wrap > a {color: #ffffff;}.asset-bg.alt-eight h4.spb-center-heading span:before, .asset-bg.alt-eight h4.spb-center-heading span:after {border-color: #ffffff;}.alt-eight .full-width-text:after {border-top-color:#3b5998;}.alt-eight h4.spb-text-heading, .alt-eight h4.spb-heading {border-bottom-color:#ffffff;}.asset-bg.alt-nine {background-color: #ffcd06;}.asset-bg.alt-nine, .asset-bg .alt-nine, .asset-bg.alt-nine h1, .asset-bg.alt-nine h2, .asset-bg.alt-nine h3, .asset-bg.alt-nine h3, .asset-bg.alt-nine h4, .asset-bg.alt-nine h5, .asset-bg.alt-nine h6, .alt-nine .carousel-wrap > a {color: #0a0a0a;}.asset-bg.alt-nine h4.spb-center-heading span:before, .asset-bg.alt-nine h4.spb-center-heading span:after {border-color: #0a0a0a;}.alt-nine .full-width-text:after {border-top-color:#ffcd06;}.alt-nine h4.spb-text-heading, .alt-nine h4.spb-heading {border-bottom-color:#0a0a0a;}.asset-bg.alt-ten {background-color: #ff6418;}.asset-bg.alt-ten, .asset-bg .alt-ten, .asset-bg.alt-ten h1, .asset-bg.alt-ten h2, .asset-bg.alt-ten h3, .asset-bg.alt-ten h3, .asset-bg.alt-ten h4, .asset-bg.alt-ten h5, .asset-bg.alt-ten h6, .alt-ten .carousel-wrap > a {color: #ffffff;}.asset-bg.alt-ten h4.spb-center-heading span:before, .asset-bg.alt-ten h4.spb-center-heading span:after {border-color: #ffffff;}.alt-ten .full-width-text:after {border-top-color:#ff6418;}.alt-ten h4.spb-text-heading, .alt-ten h4.spb-heading {border-bottom-color:#ffffff;}.asset-bg.light-style, .asset-bg.light-style h1, .asset-bg.light-style h2, .asset-bg.light-style h3, .asset-bg.light-style h3, .asset-bg.light-style h4, .asset-bg.light-style h5, .asset-bg.light-style h6 {color: #fff!important;}.asset-bg.dark-style, .asset-bg.dark-style h1, .asset-bg.dark-style h2, .asset-bg.dark-style h3, .asset-bg.dark-style h3, .asset-bg.dark-style h4, .asset-bg.dark-style h5, .asset-bg.dark-style h6 {color: #222!important;}nav .menu li {font-family: "Open Sans", sans-serif;font-weight: 300;font-style: normal;}.mobile-browser .sf-animation, .apple-mobile-browser .sf-animation {
					opacity: 1!important;
					left: auto!important;
					right: auto!important;
					bottom: auto!important;
					-webkit-transform: scale(1)!important;
					-o-transform: scale(1)!important;
					-moz-transform: scale(1)!important;
					transform: scale(1)!important;
				}
				.mobile-browser .sf-animation.image-banner-content, .apple-mobile-browser .sf-animation.image-banner-content {
					bottom: 50%!important;
				}@media only screen and (max-width: 767px) {#top-bar nav .menu > li {border-top-color: #f7f7f7;}nav .menu > li {border-top-color: #e4e4e4;}}
/*========== User Custom CSS Styles ==========*/
.sf-icon-pkgred {color: #990000; border-color:#990000; } .sf-icon-pkgred:hover > div:first-child {background-color: #990000; }
.sf-icon-pkgorange {color: #ff6418; border-color:#ff6418; } .sf-icon-pkgorange:hover > div:first-child {background-color: #ff6418; }
.sf-icon-pkggreen {color: #007a00; border-color:#007a00; } .sf-icon-pkggreen:hover > div:first-child {background-color: #007a00; }
.sf-icon-pkgblue {color: #3b5998; border-color:#3b5998; } .sf-icon-pkgblue:hover > div:first-child {background-color: #3b5998; }
.sf-icon-pkgyellow {color: #ffcd06; border-color:#ffcd06; } .sf-icon-pkgyellow:hover > div:first-child {background-color: #ffcd06; }

.sf-button {max-width:none !important;}
.whitecolour {color:#ffffff !important; text-decoration:none;}
.single-post #main-container {background-color:#f5f6f7;}
.single-post .container {padding:0;} iframe {max-height:400px;}
.page .divider-wrap {margin:0 0;}

iframe {max-height: 900px !important;}

 @media only screen and (max-width: 600px) {
iframe {max-height: 100% !important;}
}

.sf-countdown {display: none !important;}

</style>
<meta name="generator" content="Powered by Slider Revolution 5.4.5.1 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
<link rel="icon" href="https://parkourgenerations.com/wp-content/uploads/2014/09/cropped-Swirl_black-small-square-32x32.png" sizes="32x32" />
<link rel="icon" href="https://parkourgenerations.com/wp-content/uploads/2014/09/cropped-Swirl_black-small-square-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://parkourgenerations.com/wp-content/uploads/2014/09/cropped-Swirl_black-small-square-180x180.png" />
<meta name="msapplication-TileImage" content="https://parkourgenerations.com/wp-content/uploads/2014/09/cropped-Swirl_black-small-square-270x270.png" />
<script type="text/javascript">function setREVStartSize(e){
				try{ var i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0;					
					if(e.responsiveLevels&&(jQuery.each(e.responsiveLevels,function(e,f){f>i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),"fullscreen"==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(",");if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split("%").length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f<e.minHeight&&(f=e.minHeight);e.c.closest(".rev_slider_wrapper").css({height:f})					
				}catch(d){console.log("Failure at Presize of Slider:"+d)}
			};</script>

    <!--// CLOSE HEAD //-->
</head>

<!--// OPEN BODY //-->
<body class="home page-template-default page page-id-112252 layout-fullwidth responsive-fluid v5Homepage search-off">






<div id="header-search">
    <div class="container clearfix">
        <i class="ss-search"></i>
        <form method="get" class="search-form" action="https://parkourgenerations.com/"><input type="text" placeholder="Search for something..." name="s" autocomplete="off" /></form>
        <a id="header-search-close" href="#"><i class="ss-delete"></i></a>
    </div>
</div>


<div id="mobile-menu-wrap">
<form method="get" class="mobile-search-form" action="https://parkourgenerations.com/"><input type="text" placeholder="Search" name="s" autocomplete="off" /></form>
<a class="mobile-menu-close"><i class="ss-delete"></i></a>
<nav id="mobile-menu" class="clearfix">
<!-- UberMenu Content Before --><img src="//parkourgenerations.com/wp-content/uploads/2014/09/pkgen_logo_320x100.gif" alt="Parkour Generations"><!-- End UberMenu Content Before -->
<!-- UberMenu [Configuration:mobilemenu] [Theme Loc:mobile_menu] [Integration:auto] -->
<div id="ubermenu-mobilemenu-397-mobile_menu" class="ubermenu ubermenu-nojs ubermenu-mobilemenu ubermenu-menu-397 ubermenu-loc-mobile_menu ubermenu-responsive-collapse ubermenu-vertical ubermenu-transition-none ubermenu-trigger-hover ubermenu-skin-trans-black  ubermenu-bar-align-full ubermenu-items-align-left ubermenu-bound ubermenu-disable-submenu-scroll ubermenu-sub-indicators ubermenu-retractors-responsive"><ul id="ubermenu-nav-mobilemenu-397-mobile_menu" class="ubermenu-nav"><li id="menu-item-113161" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-home ubermenu-current-menu-item ubermenu-page_item ubermenu-page-item-112252 ubermenu-current_page_item ubermenu-item-113161 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/" tabindex="0"><i class="ubermenu-icon fa fa-home"></i><span class="ubermenu-target-title ubermenu-target-text">Front page</span></a></li><li id="menu-item-113163" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113163 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/events/" tabindex="0"><i class="ubermenu-icon fa fa-users"></i><span class="ubermenu-target-title ubermenu-target-text">Events</span></a></li><li id="menu-item-132392" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-custom ubermenu-item-132392 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="http://www.parkourgenerationslondon.com/training" tabindex="0"><i class="ubermenu-icon fa fa-link"></i><span class="ubermenu-target-title ubermenu-target-text">London Academy</span></a></li><li id="menu-item-113164" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113164 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/online/" tabindex="0"><i class="ubermenu-icon fa fa-laptop"></i><span class="ubermenu-target-title ubermenu-target-text">Online Programming</span></a></li><li id="menu-item-113165" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113165 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/tuition/" tabindex="0"><i class="ubermenu-icon fa fa-comments"></i><span class="ubermenu-target-title ubermenu-target-text">Private Tuition</span></a></li><li id="menu-item-113167" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113167 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://app.glofox.com/portal/#/branch/5cc084031168a70b833ba6a6/memberships?header=memberships" tabindex="0"><i class="ubermenu-icon fa fa-flag"></i><span class="ubermenu-target-title ubermenu-target-text">Memberships</span></a></li><li id="menu-item-113168" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113168 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/certifications/" tabindex="0"><i class="ubermenu-icon fa fa-mortar-board"></i><span class="ubermenu-target-title ubermenu-target-text">Certifications</span></a></li><li id="menu-item-113169" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113169 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/services/" tabindex="0"><i class="ubermenu-icon fa fa-sitemap"></i><span class="ubermenu-target-title ubermenu-target-text">Services</span></a></li><li id="menu-item-113170" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113170 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/performance/" tabindex="0"><i class="ubermenu-icon fa fa-trophy"></i><span class="ubermenu-target-title ubermenu-target-text">Performance Department</span></a></li><li id="menu-item-113171" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113171 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/tactical/" tabindex="0"><i class="ubermenu-icon fa fa-shield"></i><span class="ubermenu-target-title ubermenu-target-text">Tactical Department</span></a></li><li id="menu-item-113172" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113172 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/overcome/" tabindex="0"><i class="ubermenu-icon fa fa-heart"></i><span class="ubermenu-target-title ubermenu-target-text">Overcome Project</span></a></li><li id="menu-item-115649" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-custom ubermenu-item-115649 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="http://parkourforschools.com" tabindex="0"><i class="ubermenu-icon fa fa-child"></i><span class="ubermenu-target-title ubermenu-target-text">Parkour for Schools</span></a></li><li id="menu-item-113175" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113175 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/company/" tabindex="0"><i class="ubermenu-icon fa fa-globe"></i><span class="ubermenu-target-title ubermenu-target-text">Company</span></a></li><li id="menu-item-113176" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113176 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/dap/" tabindex="0"><i class="ubermenu-icon fa fa-bolt"></i><span class="ubermenu-target-title ubermenu-target-text">Developing Athletes</span></a></li><li id="menu-item-113177" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-custom ubermenu-item-113177 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="http://shecantrace.com" tabindex="0"><i class="ubermenu-icon fa fa-venus"></i><span class="ubermenu-target-title ubermenu-target-text">SheCanTrace</span></a></li><li id="menu-item-113178" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113178 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/network-coach-scheme/" tabindex="0"><i class="ubermenu-icon fa fa-user"></i><span class="ubermenu-target-title ubermenu-target-text">Network Coach Scheme</span></a></li><li id="menu-item-113179" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-113179 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/contact/" tabindex="0"><i class="ubermenu-icon fa fa-envelope"></i><span class="ubermenu-target-title ubermenu-target-text">Contact us</span></a></li><li id="menu-item-113180" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-custom ubermenu-item-113180 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="http://store.parkourgenerations.com" tabindex="0"><i class="ubermenu-icon fa fa-shopping-basket"></i><span class="ubermenu-target-title ubermenu-target-text">Store</span></a></li><li id="menu-item-124443" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-ubermenu-custom ubermenu-item-124443 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><div class="ubermenu-content-block ubermenu-custom-content ubermenu-custom-content-padded">PARKOUR GENERATIONS LTD<br/>
Chainstore Parkour Academy<br/>
Trinity Buoy Wharf<br/>
64 Orchard Place<br/>
London<br/>
E14 0JY<br/>
<br/>
Tel: +44(0)203 651 3364<br/>
<br/>
Email: contact@parkourgenerations.com</div></li><li id="menu-item-124444" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-ubermenu-custom ubermenu-item-124444 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><div class="ubermenu-content-block ubermenu-custom-content ubermenu-custom-content-padded"><ul class="social-icons small dark">
<li class="facebook"><a href="https://www.facebook.com/parkourgenerations" target="_blank"><i class="fa-facebook"></i><i class="fa-facebook"></i></a></li>
<li class="twitter"><a href="http://www.twitter.com/PKGenerations" target="_blank"><i class="fa-twitter"></i><i class="fa-twitter"></i></a></li>
<li class="youtube"><a href="https://www.youtube.com/user/ParkourGenerations" target="_blank"><i class="fa-youtube"></i><i class="fa-youtube"></i></a></li>
<li class="vimeo"><a href="http://www.vimeo.com/parkourgenerations" target="_blank"><i class="fa-vimeo-square"></i><i class="fa-vimeo-square"></i></a></li>
<li class="instagram"><a href="http://instagram.com/ParkourGenerations" target="_blank"><i class="fa-instagram"></i><i class="fa-instagram"></i></a></li>
<li class="flickr"><a href="https://www.flickr.com/photos/teampkgen/" target="_blank"><i class="fa-flickr"></i><i class="fa-flickr"></i></a></li>
<li class="googleplus"><a href="https://plus.google.com/+PrkourgenerationsUK/about" target="_blank"><i class="fa-google-plus"></i><i class="fa-google-plus"></i></a></li>
</ul>
</div></li></ul></div>
<!-- End UberMenu -->
</nav>
</div>

<!--// OPEN #container //-->
<div id="container">
    
        <!--// HEADER //-->
        <div class="header-wrap">

            
            <div id="header-section" class="header-6 logo-fade">
                <header id="header" class="sticky-header clearfix">
<div class="container">
<div class="row">
<div id="logo" class="logo-left clearfix">
<a href="https://parkourgenerations.com">
<img class="standard" src="//parkourgenerations.com/wp-content/uploads/2014/09/270x80_PixelHinted_PKGen_Logo.jpg" alt="Parkour Generations" />
<img class="retina" src="//parkourgenerations.com/wp-content/uploads/2014/09/270x80_PixelHinted_PKGen_Logo.jpg" alt="Parkour Generations" />
</a>
<a href="#" class="visible-sm visible-xs mobile-menu-show"><i class="ss-rows"></i></a>
</div>
<div class="header-right"><nav class="search-nav std-menu">
<ul class="menu">
</ul>
</nav>
<nav id="main-navigation" class="std-menu clearfix">

<!-- UberMenu [Configuration:main] [Theme Loc:main_navigation] [Integration:auto] -->
<div id="ubermenu-main-320-main_navigation" class="ubermenu ubermenu-nojs ubermenu-main ubermenu-menu-320 ubermenu-loc-main_navigation ubermenu-responsive-collapse ubermenu-horizontal ubermenu-transition-slide ubermenu-trigger-hover_intent ubermenu-skin-trans-black  ubermenu-bar-align-left ubermenu-items-align-left ubermenu-bound ubermenu-sub-indicators ubermenu-retractors-responsive"><ul id="ubermenu-nav-main-320-main_navigation" class="ubermenu-nav"><li id="menu-item-106396" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-106396 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/online" tabindex="0"><i class="ubermenu-icon fa fa-bullseye"></i><span class="ubermenu-target-title ubermenu-target-text">Online</span></a></li><li id="menu-item-107737" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-107737 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://app.glofox.com/portal/#/branch/5cc084031168a70b833ba6a6/memberships?header=memberships" tabindex="0"><i class="ubermenu-icon fa fa-users"></i><span class="ubermenu-target-title ubermenu-target-text">Memberships</span></a></li><li id="menu-item-108472" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-108472 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerationslondon.com/education/" tabindex="0"><i class="ubermenu-icon fa fa-trophy"></i><span class="ubermenu-target-title ubermenu-target-text">Certifications</span></a></li><li id="menu-item-110813" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-110813 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" target="_blank" href="https://parkourgenerationslondon.com/training/" tabindex="0"><i class="ubermenu-icon fa fa-building"></i><span class="ubermenu-target-title ubermenu-target-text">London Classes</span></a></li><li id="menu-item-102824" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-102824 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left" href="https://parkourgenerations.com/services/" tabindex="0"><i class="ubermenu-icon fa fa-globe"></i><span class="ubermenu-target-title ubermenu-target-text">Services</span></a></li><li id="menu-item-112339" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-112339 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-image ubermenu-item-layout-default ubermenu-item-layout-image_left" href="https://parkourgenerations.com/company/" tabindex="0"><img class="ubermenu-image ubermenu-image-size-full" src="https://parkourgenerations.com/wp-content/uploads/2014/09/Logo_Trans.png" width="16" height="16" alt="Logo_Trans"  /><span class="ubermenu-target-title ubermenu-target-text">About</span></a></li><li id="menu-item-110815" class="ubermenu-item ubermenu-item-type-post_type ubermenu-item-object-page ubermenu-item-110815 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left ubermenu-item-notext" href="https://parkourgenerations.com/contact/" tabindex="0"><i class="ubermenu-icon fa fa-envelope-o"></i></a></li><li id="menu-item-124432" class="ubermenu-item ubermenu-item-type-custom ubermenu-item-object-custom ubermenu-item-124432 ubermenu-item-level-0 ubermenu-column ubermenu-column-auto" ><a class="ubermenu-target ubermenu-target-with-icon ubermenu-item-layout-default ubermenu-item-layout-icon_left ubermenu-item-notext" href="http://store.parkourgenerations.com" tabindex="0"><i class="ubermenu-icon fa fa-shopping-basket"></i></a></li></ul></div>
<!-- End UberMenu -->
</nav>

</div>
</div> <!-- CLOSE .row -->
</div> <!-- CLOSE .container -->
</header>
            </div>

        </div>

        <!--// OPEN #main-container //-->
        <div id="main-container" class="clearfix">

                                <div class="home-slider-wrap">
                        <link href="https://fonts.googleapis.com/css?family=Open+Sans:400" rel="stylesheet" property="stylesheet" type="text/css" media="all">
<div id="rev_slider_87_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" data-source="gallery" style="margin:0px auto;background:#303841;padding:0px;margin-top:0px;margin-bottom:0px;">
<!-- START REVOLUTION SLIDER 5.4.5.1 auto mode -->
	<div id="rev_slider_87_1" class="rev_slider fullwidthabanner" style="display:none;" data-version="5.4.5.1">
<ul>	<!-- SLIDE  -->
	<li data-index="rs-220" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"  data-easein="default" data-easeout="default" data-masterspeed="300"  data-thumb="https://parkourgenerations.com/wp-content/uploads/2014/09/BothChrisJumps-1-100x50.jpg"  data-rotate="0"  data-saveperformance="off"  data-title="Impressive" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
		<!-- MAIN IMAGE -->
		<img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png"  alt="Impressive Parkour Jump by two Chris's" title="BothChrisJumps"  width="1920" height="800" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2014/09/BothChrisJumps-1.jpg" data-bgposition="center center" data-kenburns="on" data-duration="10000" data-ease="Linear.easeNone" data-scalestart="120" data-scaleend="100" data-rotatestart="0" data-rotateend="0" data-blurstart="0" data-blurend="0" data-offsetstart="0 0" data-offsetend="0 0" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->

		<!-- LAYER NR. 1 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-220-layer-1" 
			 data-x="40" 
			 data-y="bottom" data-voffset="100" 
						data-width="['none','none','none','none']"
			data-height="['none','none','none','none']"
			data-visibility="['on','on','on','off']"
 
			data-type="image" 
			data-responsive_offset="on" 

			data-frames='[{"delay":10,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 5;"><img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="parkour generations logo transparent" data-ww="400px" data-hh="94px" width="400" height="94" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2014/09/pkgen_logo_trans_400x94.png" data-no-retina> </div>

		<!-- LAYER NR. 2 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-220-layer-2" 
			 data-x="center" data-hoffset="-270" 
			 data-y="bottom" data-voffset="60" 
						data-width="['auto']"
			data-height="['auto']"
			data-visibility="['on','on','on','off']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":1000,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"+500","speed":1000,"frame":"999","to":"y:-50px;opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 6; white-space: nowrap; font-size: 36px; line-height: 40px; font-weight: 400; color: rgba(76,176,25,1); letter-spacing: ;font-family:Open Sans;">CLASSES </div>

		<!-- LAYER NR. 3 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-220-layer-3" 
			 data-x="center" data-hoffset="-260" 
			 data-y="bottom" data-voffset="60" 
						data-width="['auto']"
			data-height="['auto']"
			data-visibility="['on','on','on','off']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":2500,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"+500","speed":1000,"frame":"999","to":"y:-50px;opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 7; white-space: nowrap; font-size: 36px; line-height: 40px; font-weight: 400; color: rgba(254,194,48,1); letter-spacing: ;font-family:Open Sans;">EVENTS </div>

		<!-- LAYER NR. 4 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-220-layer-4" 
			 data-x="center" data-hoffset="-334" 
			 data-y="bottom" data-voffset="59" 
						data-width="['auto']"
			data-height="['auto']"
			data-visibility="['on','on','on','off']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":4000,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"+500","speed":1000,"frame":"999","to":"y:-50px;opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 8; white-space: nowrap; font-size: 36px; line-height: 40px; font-weight: 400; color: rgba(242,97,1,1); letter-spacing: ;font-family:Open Sans;">CERTIFICATIONS </div>

		<!-- LAYER NR. 5 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-220-layer-5" 
			 data-x="center" data-hoffset="-328" 
			 data-y="bottom" data-voffset="60" 
						data-width="['auto']"
			data-height="['auto']"
			data-visibility="['on','on','on','off']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":5500,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"+500","speed":1000,"frame":"999","to":"y:-50px;opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 9; white-space: nowrap; font-size: 36px; line-height: 40px; font-weight: 400; color: rgba(52,152,219,1); letter-spacing: ;font-family:Open Sans;">PERFORMANCE </div>

		<!-- LAYER NR. 6 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-220-layer-6" 
			 data-x="center" data-hoffset="-280" 
			 data-y="bottom" data-voffset="60" 
						data-width="['auto']"
			data-height="['auto']"
			data-visibility="['on','on','on','off']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":7000,"speed":1000,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"frame":"999","to":"y:-50px;opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 10; white-space: nowrap; font-size: 36px; line-height: 40px; font-weight: 400; color: rgba(153,0,0,1); letter-spacing: ;font-family:Open Sans;">TRAINING </div>
	</li>
	<!-- SLIDE  -->
	<li data-index="rs-176" data-transition="curtain-3" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="on"  data-easein="default" data-easeout="default" data-masterspeed="default"  data-thumb="https://parkourgenerations.com/wp-content/uploads/2016/11/triangle_skyblue-100x50.gif"  data-rotate="0"  data-saveperformance="off"  data-title="Classes Today" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
		<!-- MAIN IMAGE -->
		<img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png"  alt="" title="triangle_skyblue"  width="1920" height="500" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2016/11/triangle_skyblue.gif" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="repeat-y" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->

		<!-- LAYER NR. 7 -->
		<div class="tp-caption tp-shape tp-shapewrapper  tp-resizeme rs-parallaxlevel-1" 
			 id="slide-176-layer-18" 
			 data-x="495" 
			 data-y="71" 
						data-width="['200']"
			data-height="['300']"
 
			data-type="shape" 
			data-responsive_offset="on" 

			data-frames='[{"delay":10,"speed":2000,"frame":"0","from":"x:50px;opacity:0;","to":"o:1;","ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 6;border-color:rgba(17,102,40,1);border-style:solid;border-width:25px 25px 25px 25px;"> </div>

		<!-- LAYER NR. 8 -->
		<div class="tp-caption   tp-resizeme rs-parallaxlevel-1" 
			 id="slide-176-layer-4" 
			 data-x="center" data-hoffset="-93" 
			 data-y="97" 
						data-width="['none','none','none','none']"
			data-height="['none','none','none','none']"
 
			data-type="image" 
			data-responsive_offset="on" 

			data-frames='[{"delay":1000,"speed":1000,"frame":"0","from":"y:-50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 7;"><img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="" data-ww="396px" data-hh="214px" width="396" height="214" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2014/09/swirl_green.png" data-no-retina> </div>

		<!-- LAYER NR. 9 -->
		<div class="tp-caption   tp-resizeme rs-parallaxlevel-2" 
			 id="slide-176-layer-5" 
			 data-x="636" 
			 data-y="146" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":2000,"speed":1000,"frame":"0","from":"x:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 8; white-space: nowrap; font-size: 60px; line-height: 80px; font-weight: 900; color: rgba(255,255,255,1); letter-spacing: ;font-family:Georgia, serif;">HEALTH </div>

		<!-- LAYER NR. 10 -->
		<div class="tp-caption   tp-resizeme rs-parallaxlevel-3" 
			 id="slide-176-layer-6" 
			 data-x="395" 
			 data-y="46" 
						data-width="['none','none','none','none']"
			data-height="['none','none','none','none']"
 
			data-type="image" 
			data-responsive_offset="on" 

			data-frames='[{"delay":700,"speed":1800,"frame":"0","from":"x:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 9;"><img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="" data-ww="460px" data-hh="479px" width="460" height="479" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2014/09/KevinJumps.png" data-no-retina> </div>

		<!-- LAYER NR. 11 -->
		<div class="tp-caption   tp-resizeme rs-parallaxlevel-4" 
			 id="slide-176-layer-1" 
			 data-x="325" 
			 data-y="center" data-voffset="-69" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":2000,"speed":1000,"frame":"0","from":"x:-50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 10; white-space: nowrap; font-size: 60px; line-height: 80px; font-weight: 900; color: rgba(234,234,234,1); letter-spacing: px;font-family:Georgia, serif;">PARKOUR </div>

		<!-- LAYER NR. 12 -->
		<div class="tp-caption   tp-resizeme rs-parallaxlevel-5" 
			 id="slide-176-layer-7" 
			 data-x="687" 
			 data-y="231" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":3000,"speed":500,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 11; white-space: nowrap; font-size: 40px; line-height: 40px; font-weight: 800; color: rgba(76,176,25,1); letter-spacing: ;font-family:Georgia, serif;">MOVEMENT </div>

		<!-- LAYER NR. 13 -->
		<div class="tp-caption rev-btn " 
			 id="slide-176-layer-9" 
			 data-x="421" 
			 data-y="497" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="button" 
			data-actions='[{"event":"click","action":"simplelink","target":"_self","url":"http:\/\/parkourgenerations.com\/classes\/#timetable","delay":""}]'
			data-responsive_offset="on" 
			data-responsive="off"
			data-frames='[{"delay":3500,"speed":1500,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.8;sY:0.8;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power4.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(76,176,25,1);bg:rgba(255,255,255,1);bs:solid;bw:0 0 0 0;"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[10,10,10,10]"
			data-paddingright="[30,30,30,30]"
			data-paddingbottom="[10,10,10,10]"
			data-paddingleft="[30,30,30,30]"

			style="z-index: 12; white-space: nowrap; font-size: 14px; line-height: 14px; font-weight: 400; color: rgba(255,255,255,1); letter-spacing: ;font-family:Open Sans;background-color:rgba(76,176,25,1);border-color:rgba(0,0,0,1);outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Class Timetable </div>

		<!-- LAYER NR. 14 -->
		<div class="tp-caption rev-btn " 
			 id="slide-176-layer-10" 
			 data-x="621" 
			 data-y="497" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="button" 
			data-actions='[{"event":"click","action":"simplelink","target":"_blank","url":"https:\/\/www.youtube.com\/watch?v=hq7hAFrJ0ac","delay":""}]'
			data-responsive_offset="on" 
			data-responsive="off"
			data-frames='[{"delay":4000,"speed":1000,"frame":"0","from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","to":"o:1;","ease":"Power2.easeOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(76,176,25,1);bg:rgba(255,255,255,1);bs:solid;bw:0 0 0 0;"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[10,10,10,10]"
			data-paddingright="[30,30,30,30]"
			data-paddingbottom="[10,10,10,10]"
			data-paddingleft="[30,30,30,30]"

			style="z-index: 13; white-space: nowrap; font-size: 14px; line-height: 14px; font-weight: 400; color: rgba(255,255,255,1); letter-spacing: ;font-family:Open Sans;background-color:rgba(76,176,25,1);border-color:rgba(0,0,0,1);outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Watch the Video </div>

		<!-- LAYER NR. 15 -->
		<div class="tp-caption   tp-resizeme rs-parallaxlevel-4" 
			 id="slide-176-layer-19" 
			 data-x="325" 
			 data-y="181" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="text" 
			data-responsive_offset="on" 

			data-frames='[{"delay":2500,"speed":1000,"frame":"0","from":"x:-50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 14; white-space: nowrap; font-size: 30px; line-height: 30px; font-weight: 400; color: rgba(255,255,255,1); letter-spacing: ;font-family:Georgia, serif;">Fitness </div>
	</li>
	<!-- SLIDE  -->
	<li data-index="rs-179" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="on"  data-easein="default" data-easeout="default" data-masterspeed="300"  data-thumb=""  data-rotate="0"  data-saveperformance="off"  data-title="Chainstore" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
		<!-- MAIN IMAGE -->
		<img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png" data-bgcolor='#263837' style='background:#263837' alt="" title="Parkour Classes, Events, Certifications &amp; Community"  data-lazyload="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/transparent.png" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->

		<!-- LAYER NR. 16 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-179-layer-8" 
			 data-x="center" data-hoffset="" 
			 data-y="center" data-voffset="" 
						data-width="['none','none','none','none']"
			data-height="['none','none','none','none']"
 
			data-type="image" 
			data-responsive_offset="on" 

			data-frames='[{"delay":500,"speed":1000,"frame":"0","from":"y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;","mask":"x:0px;y:[100%];s:inherit;e:inherit;","to":"o:1;","ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 5;"><img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="" data-ww="942px" data-hh="290px" width="942" height="290" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2014/09/chainstore_v2_logo.png" data-no-retina> </div>

		<!-- LAYER NR. 17 -->
		<div class="tp-caption rev-btn " 
			 id="slide-179-layer-10" 
			 data-x="center" data-hoffset="-100" 
			 data-y="bottom" data-voffset="60" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="button" 
			data-actions='[{"event":"click","action":"simplelink","target":"_self","url":"http:\/\/parkourgenerations.com\/chainstore\/#linklocation","delay":""}]'
			data-responsive_offset="on" 

			data-frames='[{"delay":1000,"speed":500,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(38,56,55,1);bg:rgba(255,255,255,1);bs:solid;bw:0 0 0 0;"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[12,12,12,12]"
			data-paddingright="[35,35,35,35]"
			data-paddingbottom="[12,12,12,12]"
			data-paddingleft="[35,35,35,35]"

			style="z-index: 6; white-space: nowrap; font-size: 17px; line-height: 17px; font-weight: 400; color: rgba(255,255,255,1);font-family:Open Sans;background-color:rgba(174,137,93,1);border-color:rgba(0,0,0,1);outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Directions </div>

		<!-- LAYER NR. 18 -->
		<div class="tp-caption rev-btn " 
			 id="slide-179-layer-12" 
			 data-x="center" data-hoffset="100" 
			 data-y="bottom" data-voffset="60" 
						data-width="['auto']"
			data-height="['auto']"
 
			data-type="button" 
			data-actions='[{"event":"click","action":"simplelink","target":"_self","url":"http:\/\/www.parkourgenerations.com\/classes","delay":""}]'
			data-responsive_offset="on" 

			data-frames='[{"delay":1200,"speed":500,"frame":"0","from":"y:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"},{"frame":"hover","speed":"0","ease":"Linear.easeNone","to":"o:1;rX:0;rY:0;rZ:0;z:0;","style":"c:rgba(38,56,55,1);bg:rgba(255,255,255,1);bs:solid;bw:0 0 0 0;"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[12,12,12,12]"
			data-paddingright="[35,35,35,35]"
			data-paddingbottom="[12,12,12,12]"
			data-paddingleft="[35,35,35,35]"

			style="z-index: 7; white-space: nowrap; font-size: 17px; line-height: 17px; font-weight: 400; color: rgba(255,255,255,1);font-family:Open Sans;background-color:rgba(174,137,93,1);border-color:rgba(0,0,0,1);outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;cursor:pointer;">Classes </div>

		<!-- LAYER NR. 19 -->
		<div class="tp-caption   tp-resizeme" 
			 id="slide-179-layer-13" 
			 data-x="1000" 
			 data-y="" 
						data-width="['none','none','none','none']"
			data-height="['none','none','none','none']"
 
			data-type="image" 
			data-responsive_offset="on" 

			data-frames='[{"delay":1500,"speed":4000,"frame":"0","from":"x:50px;opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","to":"opacity:0;","ease":"Power3.easeInOut"}]'
			data-textAlign="['inherit','inherit','inherit','inherit']"
			data-paddingtop="[0,0,0,0]"
			data-paddingright="[0,0,0,0]"
			data-paddingbottom="[0,0,0,0]"
			data-paddingleft="[0,0,0,0]"

			style="z-index: 8;"><img src="https://parkourgenerations.com/wp-content/plugins/revslider/admin/assets/images/dummy.png" alt="" data-ww="223px" data-hh="500px" width="223" height="500" data-lazyload="https://parkourgenerations.com/wp-content/uploads/2014/09/Blane_climbs_rope.png" data-no-retina> </div>
	</li>
</ul>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss="";
						if(htmlDiv) {
							htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
						}else{
							var htmlDiv = document.createElement("div");
							htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
							document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
						}
					</script>
<div class="tp-bannertimer" style="height: 3px; background: rgba(255,255,255,0.15);"></div>	</div>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss="";
				if(htmlDiv) {
					htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
				}else{
					var htmlDiv = document.createElement("div");
					htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
					document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
				}
			</script>
		<script type="text/javascript">
setREVStartSize({c: jQuery('#rev_slider_87_1'), gridwidth: [1280], gridheight: [600], sliderLayout: 'auto'});
			
var revapi87,
	tpj=jQuery;
			
tpj(document).ready(function() {
	if(tpj("#rev_slider_87_1").revolution == undefined){
		revslider_showDoubleJqueryError("#rev_slider_87_1");
	}else{
		revapi87 = tpj("#rev_slider_87_1").show().revolution({
			sliderType:"standard",
			jsFileLocation:"//parkourgenerations.com/wp-content/plugins/revslider/public/assets/js/",
			sliderLayout:"auto",
			dottedOverlay:"none",
			delay:9000,
			navigation: {
				keyboardNavigation:"off",
				keyboard_direction: "horizontal",
				mouseScrollNavigation:"off",
 							mouseScrollReverse:"default",
				onHoverStop:"on",
				arrows: {
					style:"uranus",
					enable:true,
					hide_onmobile:false,
					hide_onleave:false,
					tmp:'',
					left: {
						h_align:"left",
						v_align:"center",
						h_offset:20,
						v_offset:0
					},
					right: {
						h_align:"right",
						v_align:"center",
						h_offset:20,
						v_offset:0
					}
				}
				,
				bullets: {
					enable:true,
					hide_onmobile:false,
					style:"ares",
					hide_onleave:false,
					direction:"horizontal",
					h_align:"center",
					v_align:"bottom",
					h_offset:0,
					v_offset:20,
					space:5,
					tmp:'<span class="tp-bullet-title">{{title}}</span>'
				}
			},
			visibilityLevels:[440,324,228,480],
			gridwidth:1280,
			gridheight:600,
			lazyType:"single",
			parallax: {
				type:"mouse",
				origo:"enterpoint",
				speed:400,
				speedbg:0,
				speedls:0,
				levels:[1,2,3,4,5,6,7,8,9,10,11,12,13,50,51,55],
			},
			shadow:0,
			spinner:"spinner0",
			stopLoop:"off",
			stopAfterLoops:-1,
			stopAtSlide:-1,
			shuffle:"off",
			autoHeight:"off",
			hideThumbsOnMobile:"off",
			hideSliderAtLimit:0,
			hideCaptionAtLimit:0,
			hideAllCaptionAtLilmit:0,
			debugMode:false,
			fallbacks: {
				simplifyAll:"off",
				nextSlideOnWindowFocus:"off",
				disableFocusListener:false,
			}
		});
// replace the "39" in the "revapi39" part below with your slider's ID
// http://tinyurl.com/zb6hzpc
revapi87.on('revolution.slide.layeraction', function(e, data) {
 
    if(data.eventtype !== 'enterstage') return;
    var $this = data.layer.find('.esg-grid');
 
    if($this.length) {
 
      $this.addClass('slider-ready');
      eval('essapi_' + $this.attr('id').split('esg-grid-')[1].split('-')[0]).esquickdraw();
 
    }
 
});	}
	
});	/*ready*/
</script>
		<script>
					var htmlDivCss = unescape(".rev_slider%20.esg-grid%20ul%20%7Bopacity%3A%200%7D%0A.rev_slider%20.esg-grid.slider-ready%20ul%20%7Bopacity%3A%201%7D");
					var htmlDiv = document.getElementById('rs-plugin-settings-inline-css');
					if(htmlDiv) {
						htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
					}
					else{
						var htmlDiv = document.createElement('div');
						htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>';
						document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]);
					}
				  </script><script>
					var htmlDivCss = unescape("%23rev_slider_87_1%20.uranus.tparrows%20%7B%0A%20%20width%3A50px%3B%0A%20%20height%3A50px%3B%0A%20%20background%3Argba%28255%2C255%2C255%2C0%29%3B%0A%20%7D%0A%20%23rev_slider_87_1%20.uranus.tparrows%3Abefore%20%7B%0A%20width%3A50px%3B%0A%20height%3A50px%3B%0A%20line-height%3A50px%3B%0A%20font-size%3A40px%3B%0A%20transition%3Aall%200.3s%3B%0A-webkit-transition%3Aall%200.3s%3B%0A%20%7D%0A%20%0A%20%20%23rev_slider_87_1%20.uranus.tparrows%3Ahover%3Abefore%20%7B%0A%20%20%20%20opacity%3A0.75%3B%0A%20%20%7D%0A.ares.tp-bullets%20%7B%0A%7D%0A.ares.tp-bullets%3Abefore%20%7B%0A%09content%3A%22%20%22%3B%0A%09position%3Aabsolute%3B%0A%09width%3A100%25%3B%0A%09height%3A100%25%3B%0A%09background%3Atransparent%3B%0A%09padding%3A10px%3B%0A%09margin-left%3A-10px%3Bmargin-top%3A-10px%3B%0A%09box-sizing%3Acontent-box%3B%0A%7D%0A.ares%20.tp-bullet%20%7B%0A%09width%3A2px%3B%0A%09height%3A2px%3B%0A%09position%3Aabsolute%3B%0A%09background%3Argba%28229%2C%20229%2C%20229%2C%201%29%3B%0A%09border-radius%3A50%25%3B%0A%09cursor%3A%20pointer%3B%0A%09box-sizing%3Acontent-box%3B%0A%7D%0A.ares%20.tp-bullet%3Ahover%2C%0A.ares%20.tp-bullet.selected%20%7B%0A%09background%3Argba%28153%2C%200%2C%200%2C%201%29%3B%0A%7D%0A.ares%20.tp-bullet-title%20%7B%0A%20%20position%3Aabsolute%3B%0A%20%20color%3A136%2C%20136%2C%20136%3B%0A%20%20font-size%3A12px%3B%0A%20%20padding%3A0px%2010px%3B%0A%20%20font-weight%3A600%3B%0A%20%20right%3A27px%3B%0A%20%20top%3A-4px%3B%20%20%0A%20%20background%3Argba%28255%2C255%2C255%2C0.75%29%3B%0A%20%20visibility%3Ahidden%3B%0A%20%20transform%3Atranslatex%28-20px%29%3B%0A%20%20-webkit-transform%3Atranslatex%28-20px%29%3B%0A%20%20transition%3Atransform%200.3s%3B%0A%20%20-webkit-transition%3Atransform%200.3s%3B%0A%20%20line-height%3A20px%3B%0A%20%20white-space%3Anowrap%3B%0A%7D%20%20%20%20%20%0A%0A.ares%20.tp-bullet-title%3Aafter%20%7B%0A%20%20%20%20width%3A%200px%3B%0A%09height%3A%200px%3B%0A%09border-style%3A%20solid%3B%0A%09border-width%3A%2010px%200%2010px%2010px%3B%0A%09border-color%3A%20transparent%20transparent%20transparent%20rgba%28255%2C255%2C255%2C0.75%29%3B%0A%09content%3A%22%20%22%3B%0A%20%20%20%20position%3Aabsolute%3B%0A%20%20%20%20right%3A-10px%3B%0A%09top%3A0px%3B%0A%7D%0A%20%20%20%20%0A.ares%20.tp-bullet%3Ahover%20.tp-bullet-title%7B%0A%20%20visibility%3Avisible%3B%0A%20%20%20transform%3Atranslatex%280px%29%3B%0A%20%20-webkit-transform%3Atranslatex%280px%29%3B%0A%7D%0A%0A.ares%20.tp-bullet.selected%3Ahover%20.tp-bullet-title%20%7B%0A%20%20%20%20background%3Argba%28153%2C%200%2C%200%2C%201%29%3B%7D%0A.ares%20.tp-bullet.selected%3Ahover%20.tp-bullet-title%3Aafter%20%7B%0A%20%20border-color%3Atransparent%20transparent%20transparent%20rgba%28153%2C%200%2C%200%2C%201%29%3B%0A%7D%0A.ares.tp-bullets%3Ahover%20.tp-bullet-title%20%7B%0A%20%20visibility%3Ahidden%3B%0A%20%20%0A%7D%0A.ares.tp-bullets%3Ahover%20.tp-bullet%3Ahover%20.tp-bullet-title%20%7B%0A%20%20%20%20visibility%3Avisible%3B%0A%20%20%20%20transform%3AtranslateX%280px%29%20translatey%280px%29%3B%0A%20%20-webkit-transform%3AtranslateX%280px%29%20translatey%280px%29%3B%0A%7D%0A%0A%0A%2F%2A%20VERTICAL%20%2A%2F%0A.ares.nav-dir-vertical.nav-pos-hor-left%20.tp-bullet-title%20%7B%20right%3Aauto%3B%20left%3A27px%3B%20%20transform%3Atranslatex%2820px%29%3B%20-webkit-transform%3Atranslatex%2820px%29%3B%7D%20%20%0A.ares.nav-dir-vertical.nav-pos-hor-left%20.tp-bullet-title%3Aafter%20%7B%20%0A%20%20border-width%3A%2010px%2010px%2010px%200%20%21important%3B%0A%20%20border-color%3A%20transparent%20rgba%28255%2C255%2C255%2C0.75%29%20transparent%20transparent%3B%0A%20%20right%3Aauto%20%21important%3B%0A%20%20left%3A-10px%20%21important%3B%20%20%20%0A%7D%0A.ares.nav-dir-vertical.nav-pos-hor-left%20.tp-bullet.selected%3Ahover%20.tp-bullet-title%3Aafter%20%7B%0A%20%20border-color%3A%20%20transparent%20rgba%28153%2C%200%2C%200%2C%201%29%20transparent%20transparent%20%21important%3B%0A%7D%0A%0A%0A%0A%2F%2A%20HORIZONTAL%20BOTTOM%20%26%26%20CENTER%20%2A%2F%0A.ares.nav-dir-horizontal.nav-pos-ver-center%20.tp-bullet-title%2C%0A.ares.nav-dir-horizontal.nav-pos-ver-bottom%20.tp-bullet-title%20%7B%20top%3A-35px%3B%20left%3A50%25%3B%20right%3Aauto%3B%20transform%3A%20translateX%28-50%25%29%20translateY%28-10px%29%3B-webkit-transform%3A%20translateX%28-50%25%29%20translateY%28-10px%29%3B%20%7D%20%20%0A%0A.ares.nav-dir-horizontal.nav-pos-ver-center%20.tp-bullet-title%3Aafter%2C%0A.ares.nav-dir-horizontal.nav-pos-ver-bottom%20.tp-bullet-title%3Aafter%20%7B%20%0A%20%20border-width%3A%2010px%2010px%200px%2010px%3B%0A%20%20border-color%3A%20rgba%28255%2C255%2C255%2C0.75%29%20transparent%20transparent%20transparent%3B%0A%20%20right%3Aauto%3B%0A%20%20left%3A50%25%3B%0A%20%20margin-left%3A-10px%3B%0A%20%20top%3Aauto%3B%0A%20%20bottom%3A-10px%3B%0A%20%20%20%20%0A%7D%0A.ares.nav-dir-horizontal.nav-pos-ver-center%20.tp-bullet.selected%3Ahover%20.tp-bullet-title%3Aafter%2C%0A.ares.nav-dir-horizontal.nav-pos-ver-bottom%20.tp-bullet.selected%3Ahover%20.tp-bullet-title%3Aafter%20%7B%0A%20%20border-color%3A%20%20rgba%28153%2C%200%2C%200%2C%201%29%20transparent%20transparent%20transparent%3B%0A%7D%0A%0A.ares.nav-dir-horizontal.nav-pos-ver-center%20.tp-bullet%3Ahover%20.tp-bullet-title%2C%0A.ares.nav-dir-horizontal.nav-pos-ver-bottom%20.tp-bullet%3Ahover%20.tp-bullet-title%7B%0A%20%20%20transform%3AtranslateX%28-50%25%29%20translatey%280px%29%3B%0A%20%20-webkit-transform%3AtranslateX%28-50%25%29%20translatey%280px%29%3B%0A%7D%0A%0A%0A%2F%2A%20HORIZONTAL%20TOP%20%2A%2F%0A.ares.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet-title%20%7B%20top%3A25px%3B%20left%3A50%25%3B%20right%3Aauto%3B%20transform%3A%20translateX%28-50%25%29%20translateY%2810px%29%3B-webkit-transform%3A%20translateX%28-50%25%29%20translateY%2810px%29%3B%20%7D%20%20%0A.ares.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet-title%3Aafter%20%7B%20%0A%20%20border-width%3A%200%2010px%2010px%2010px%3B%0A%20%20border-color%3A%20%20transparent%20transparent%20rgba%28255%2C255%2C255%2C0.75%29%20transparent%3B%0A%20%20right%3Aauto%3B%0A%20%20left%3A50%25%3B%0A%20%20margin-left%3A-10px%3B%0A%20%20bottom%3Aauto%3B%0A%20%20top%3A-10px%3B%0A%20%20%20%20%0A%7D%0A.ares.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet.selected%3Ahover%20.tp-bullet-title%3Aafter%20%7B%0A%20%20border-color%3A%20%20transparent%20transparent%20%20rgba%28153%2C%200%2C%200%2C%201%29%20transparent%3B%0A%7D%0A%0A.ares.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet%3Ahover%20.tp-bullet-title%7B%0A%20%20%20transform%3AtranslateX%28-50%25%29%20translatey%280px%29%3B%0A%20%20-webkit-transform%3AtranslateX%28-50%25%29%20translatey%280px%29%3B%0A%7D%0A%0A%0A");
					var htmlDiv = document.getElementById('rs-plugin-settings-inline-css');
					if(htmlDiv) {
						htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
					}
					else{
						var htmlDiv = document.createElement('div');
						htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>';
						document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]);
					}
				  </script>
				</div><!-- END REVOLUTION SLIDER -->                    </div>
                
                        
            			<div class="page-heading page-heading-hidden clearfix asset-bg none">
			                <div class="container">
                    <div class="heading-text">

                        
                            <h1 class="entry-title" >Parkour Classes, Events, Certifications &amp; Community</h1>

                                                
                        
                    </div>

					
                </div>
            </div>
        
                        <!--// OPEN .pb-fw-wrap //-->
            <div class="pb-fw-wrap">
                
                    <!--// OPEN #page-wrap //-->
                    <div id="page-wrap">	

<div class="inner-page-wrap has-no-sidebar clearfix">
		
	
	<!-- OPEN page -->
	<div class="clearfix " id="112252">
	
					<div class="page-content clearfix">
	
				<section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width spb_parallax_asset sf-parallax parallax-content-height spb_content_element bg-type-cover col-sm-12 no-shadow visible-lg visible-md  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<style type="text/css">a.eg-henryharrison-elemen1,a.eg-henryharrison-elemen-2{-webkit-transition:all .4s linear;   -moz-transition:all .4s linear;   -o-transition:all .4s linear;   -ms-transition:all .4s linear;   transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-media-poster{-webkit-transition:0.4s ease-in-out;  -moz-transition:0.4s ease-in-out;  -o-transition:0.4s ease-in-out;  transition:0.4s ease-in-out;  filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-media-poster,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-media-poster,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}</style>
<style type="text/css">.minimal-light .navigationbuttons,.minimal-light .esg-pagination,.minimal-light .esg-filters{text-align:center}.minimal-light .esg-filterbutton,.minimal-light .esg-navigationbutton,.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton a{color:#999; margin-right:5px; cursor:pointer; padding:0px 16px; border:1px solid #e5e5e5; line-height:38px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; font-size:12px; font-weight:700; font-family:"Open Sans",sans-serif; display:inline-block; background:#fff; margin-bottom:5px}.minimal-light .esg-navigationbutton *{color:#999}.minimal-light .esg-navigationbutton{padding:0px 16px}.minimal-light .esg-pagination-button:last-child{margin-right:0}.minimal-light .esg-left,.minimal-light .esg-right{padding:0px 11px}.minimal-light .esg-sortbutton-wrapper,.minimal-light .esg-cartbutton-wrapper{display:inline-block}.minimal-light .esg-sortbutton-order,.minimal-light .esg-cartbutton-order{display:inline-block;  vertical-align:top;  border:1px solid #e5e5e5;  width:40px;  line-height:38px;  border-radius:0px 5px 5px 0px;  -moz-border-radius:0px 5px 5px 0px;  -webkit-border-radius:0px 5px 5px 0px;  font-size:12px;  font-weight:700;  color:#999;  cursor:pointer;  background:#fff}.minimal-light .esg-cartbutton{color:#333; cursor:default !important}.minimal-light .esg-cartbutton .esgicon-basket{color:#333;   font-size:15px;   line-height:15px;   margin-right:10px}.minimal-light .esg-cartbutton-wrapper{cursor:default !important}.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton{display:inline-block; position:relative; cursor:pointer; margin-right:0px; border-right:none; border-radius:5px 0px 0px 5px; -moz-border-radius:5px 0px 0px 5px; -webkit-border-radius:5px 0px 0px 5px}.minimal-light .esg-navigationbutton:hover,.minimal-light .esg-filterbutton:hover,.minimal-light .esg-sortbutton:hover,.minimal-light .esg-sortbutton-order:hover,.minimal-light .esg-cartbutton a:hover,.minimal-light .esg-filterbutton.selected{background-color:#fff;   border-color:#bbb;   color:#333;   box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-navigationbutton:hover *{color:#333}.minimal-light .esg-sortbutton-order.tp-desc:hover{border-color:#bbb; color:#333; box-shadow:0px -3px 5px 0px rgba(0,0,0,0.13) !important}.minimal-light .esg-filter-checked{padding:1px 3px;  color:#cbcbcb;  background:#cbcbcb;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}.minimal-light .esg-filterbutton.selected .esg-filter-checked,.minimal-light .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px;  color:#fff;  background:#000;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}</style>
<style type="text/css">.eg-v5-homepage-hotspots-element-20{font-size:20px; line-height:20px; color:#303841; font-weight:400; padding:10px 10px 0px 10px ; border-radius:0px 0px 0px 0px ; background:#eaeaea; z-index:2 !important; display:block; font-family:"Open Sans"; text-transform:uppercase}.eg-v5-homepage-hotspots-element-21{font-size:16px; line-height:20px; color:#303841; font-weight:100; padding:4px 10px 10px 10px ; border-radius:0px 0px 0px 0px ; background:#eaeaea; z-index:2 !important; display:block; font-family:"Open Sans"}</style>
<style type="text/css">.eg-v5-homepage-hotspots-element-20:hover{font-size:20px; line-height:20px; color:#303841; font-weight:400; border-radius:0px 0px 0px 0px ; background:#eaeaea; font-family:"Open Sans"; text-transform:uppercase}.eg-v5-homepage-hotspots-element-21:hover{font-size:16px; line-height:20px; color:#303841; font-weight:100; border-radius:0px 0px 0px 0px ; background:#eaeaea; font-family:"Open Sans"}</style>
<style type="text/css">.eg-v5-homepage-hotspots-element-20-a{display:block; text-align:center; clear:both; margin:0px 0px 0px 0px ; position:relative}</style>
<style type="text/css">.eg-v5-homepage-hotspots-element-21-a{display:block; text-align:center; clear:both; margin:0px 0px 0px 0px ; position:relative}</style>
<style type="text/css">.eg-v5-homepage-hotspots-container{background:transparent}</style>
<style type="text/css">.eg-v5-homepage-hotspots-content{background:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:center}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-hotspots-wrapper{background:#eaeaea; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-hotspots-wrapper .esg-media-poster{background-size:cover; background-position:bottom center; background-repeat:no-repeat}</style>
<!-- THE ESSENTIAL GRID 2.2.5 CUSTOM -->

<article class="myportfolio-container minimal-light source_type_custom" id="esg-grid-58-1-wrap">

    <div id="esg-grid-58-1" class="esg-grid" style="background: transparent;padding: 2px 0px 0px 0px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; display:none">
<ul>
<li id="eg-58-post-id-0" class="filterall eg-v5-homepage-hotspots-wrapper eg-post-id-0" data-date="" data-cobblesw="1" data-cobblesh="1">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media esg-transition" data-delay="0" data-transition="esg-pressback"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/posts-1.jpg" alt="" width="720" height="400"></div>

            <div class="esg-entry-cover">

                <div class="esg-overlay esg-transition eg-v5-homepage-hotspots-container" data-delay="0" data-transition="esg-fadeout"></div>

				<div class="esg-top eg-v5-homepage-hotspots-element-20-a"><a class="eg-v5-homepage-hotspots-element-20" href="http://parkourgenerations.com/news/" target="_self">POSTS</a></div>
				<div class="esg-top eg-v5-homepage-hotspots-element-21-a"><a class="eg-v5-homepage-hotspots-element-21" href="http://parkourgenerations.com/news/" target="_self">Daily Posts & Articles</a></div>
           </div>
   </div>

</li>
<li id="eg-58-post-id-1" class="filterall eg-v5-homepage-hotspots-wrapper eg-post-id-1" data-date="" data-cobblesw="1" data-cobblesh="1">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media esg-transition" data-delay="0" data-transition="esg-pressback"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/classes-1-1.jpg" alt="" width="720" height="400"></div>

            <div class="esg-entry-cover">

                <div class="esg-overlay esg-transition eg-v5-homepage-hotspots-container" data-delay="0" data-transition="esg-fadeout"></div>

				<div class="esg-top eg-v5-homepage-hotspots-element-20-a"><a class="eg-v5-homepage-hotspots-element-20" href="https://parkourgenerationslondon.com/timetable" target="_self">CLASSES</a></div>
				<div class="esg-top eg-v5-homepage-hotspots-element-21-a"><a class="eg-v5-homepage-hotspots-element-21" href="https://parkourgenerationslondon.com/timetable" target="_self">London Classes</a></div>
           </div>
   </div>

</li>
<li id="eg-58-post-id-2" class="filterall eg-v5-homepage-hotspots-wrapper eg-post-id-2" data-date="" data-cobblesw="1" data-cobblesh="1">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media esg-transition" data-delay="0" data-transition="esg-pressback"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/events-1.jpg" alt="" width="720" height="400"></div>

            <div class="esg-entry-cover">

                <div class="esg-overlay esg-transition eg-v5-homepage-hotspots-container" data-delay="0" data-transition="esg-fadeout"></div>

				<div class="esg-top eg-v5-homepage-hotspots-element-20-a"><a class="eg-v5-homepage-hotspots-element-20" href="http://parkourgenerations.com/events/" target="_self">EVENTS</a></div>
				<div class="esg-top eg-v5-homepage-hotspots-element-21-a"><a class="eg-v5-homepage-hotspots-element-21" href="http://parkourgenerations.com/events/" target="_self">Join Our Community</a></div>
           </div>
   </div>

</li>
<li id="eg-58-post-id-3" class="filterall eg-v5-homepage-hotspots-wrapper eg-post-id-3" data-date="" data-cobblesw="1" data-cobblesh="1">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media esg-transition" data-delay="0" data-transition="esg-pressback"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/spotlights-1.jpg" alt="" width="720" height="400"></div>

            <div class="esg-entry-cover">

                <div class="esg-overlay esg-transition eg-v5-homepage-hotspots-container" data-delay="0" data-transition="esg-fadeout"></div>

				<div class="esg-top eg-v5-homepage-hotspots-element-20-a"><a class="eg-v5-homepage-hotspots-element-20" href="http://parkourgenerations.com/news/" target="_self">SPOTLIGHTS</a></div>
				<div class="esg-top eg-v5-homepage-hotspots-element-21-a"><a class="eg-v5-homepage-hotspots-element-21" href="http://parkourgenerations.com/news/" target="_self">Current Projects & Work</a></div>
           </div>
   </div>

</li>
</ul>
    </div>

</article>
<div class="clear"></div>


		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow ph_40  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#eaeaea;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:20px;padding-bottom:20px;">
			 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:60px;"></div>
</div></section>
 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-6 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<h2 class="red-underline" style="text-align: left;"><span style="color: #3a4750; font-size: 18pt; line-height: 30px; font-family: helvetica, arial, sans-serif;">Latest Parkour News</span></h2>

		</div> 
	</div>  <div id="news" data-spacername="" class="blank_spacer col-sm-3 " style="height:1px;"></div>
 
	<div class="spb_content_element col-sm-3 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<p style="text-align: right; padding-top: 20px;"><span style="color: #3a4750; font-size: 14pt; line-height: 20px; font-family: helvetica, arial, sans-serif;"><a class="redlink" href="http://parkourgenerations.com/news/">News Archive <i class="fa fa-chevron-right"></i></a> </span></p>

		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width spb_parallax_asset sf-parallax parallax-content-height spb_content_element bg-type-cover col-sm-12 no-shadow  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#eaeaea;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<style type="text/css">a.eg-henryharrison-elemen1,a.eg-henryharrison-elemen-2{-webkit-transition:all .4s linear;   -moz-transition:all .4s linear;   -o-transition:all .4s linear;   -ms-transition:all .4s linear;   transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-media-poster{-webkit-transition:0.4s ease-in-out;  -moz-transition:0.4s ease-in-out;  -o-transition:0.4s ease-in-out;  transition:0.4s ease-in-out;  filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-media-poster,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-media-poster,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}</style>
<!-- CACHE CREATED FOR: 62 --><style type="text/css">.minimal-light .navigationbuttons,.minimal-light .esg-pagination,.minimal-light .esg-filters{text-align:center}.minimal-light .esg-filterbutton,.minimal-light .esg-navigationbutton,.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton a{color:#999; margin-right:5px; cursor:pointer; padding:0px 16px; border:1px solid #e5e5e5; line-height:38px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; font-size:12px; font-weight:700; font-family:"Open Sans",sans-serif; display:inline-block; background:#fff; margin-bottom:5px}.minimal-light .esg-navigationbutton *{color:#999}.minimal-light .esg-navigationbutton{padding:0px 16px}.minimal-light .esg-pagination-button:last-child{margin-right:0}.minimal-light .esg-left,.minimal-light .esg-right{padding:0px 11px}.minimal-light .esg-sortbutton-wrapper,.minimal-light .esg-cartbutton-wrapper{display:inline-block}.minimal-light .esg-sortbutton-order,.minimal-light .esg-cartbutton-order{display:inline-block;  vertical-align:top;  border:1px solid #e5e5e5;  width:40px;  line-height:38px;  border-radius:0px 5px 5px 0px;  -moz-border-radius:0px 5px 5px 0px;  -webkit-border-radius:0px 5px 5px 0px;  font-size:12px;  font-weight:700;  color:#999;  cursor:pointer;  background:#fff}.minimal-light .esg-cartbutton{color:#333; cursor:default !important}.minimal-light .esg-cartbutton .esgicon-basket{color:#333;   font-size:15px;   line-height:15px;   margin-right:10px}.minimal-light .esg-cartbutton-wrapper{cursor:default !important}.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton{display:inline-block; position:relative; cursor:pointer; margin-right:0px; border-right:none; border-radius:5px 0px 0px 5px; -moz-border-radius:5px 0px 0px 5px; -webkit-border-radius:5px 0px 0px 5px}.minimal-light .esg-navigationbutton:hover,.minimal-light .esg-filterbutton:hover,.minimal-light .esg-sortbutton:hover,.minimal-light .esg-sortbutton-order:hover,.minimal-light .esg-cartbutton a:hover,.minimal-light .esg-filterbutton.selected{background-color:#fff;   border-color:#bbb;   color:#333;   box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-navigationbutton:hover *{color:#333}.minimal-light .esg-sortbutton-order.tp-desc:hover{border-color:#bbb; color:#333; box-shadow:0px -3px 5px 0px rgba(0,0,0,0.13) !important}.minimal-light .esg-filter-checked{padding:1px 3px;  color:#cbcbcb;  background:#cbcbcb;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}.minimal-light .esg-filterbutton.selected .esg-filter-checked,.minimal-light .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px;  color:#fff;  background:#000;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}</style>
<style type="text/css">.eg-pk-new-events-element-0{font-size:16px; line-height:24px; color:#ffffff; font-weight:400; display:block; text-align:left; clear:both; margin:0px 0px 0px 0px ; padding:20px 20px 20px 20px ; border-radius:0px 0px 0px 0px ; background:#303841; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-pk-new-events-element-2{font-size:12px; line-height:20px; color:#ffffff; font-weight:800; display:inline-block; float:none; clear:both; margin:0px 0px 0px 0px ; padding:5px 10px 5px 10px ; border-radius:0px 0px 0px 0px ; background:#990000; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:uppercase}.eg-pk-new-events-element-25{font-size:14px; line-height:24px; color:#303841; font-weight:100; display:block; text-align:left; clear:both; margin:0px 0px 20px 0px ; padding:10px 10px 0px 10px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-pk-new-events-element-3{font-size:14px !important; line-height:24px !important; color:#303841 !important; font-weight:400 !important; display:inline-block !important; float:none !important; clear:none !important; margin:0px 0px 0px 0px !important; padding:10px 10px 10px 10px !important; border-radius:0px 0px 0px 0px !important; background:transparent !important; position:relative !important; z-index:2 !important; font-family:"Open Sans" !important; text-transform:capitalize !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#eaeaea !important; border-style:solid !important}.eg-pk-new-events-element-26{font-size:16px; line-height:22px; color:#303841; font-weight:400; display:inline-block; float:right; clear:right; margin:0px 0px 0px 0px ; padding:13px 13px 13px 13px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}</style>
<style type="text/css">.eg-pk-new-events-element-0:hover{font-size:16px; line-height:24px; color:#ffffff; font-weight:400; border-radius:0px 0px 0px 0px ; background:#303841; font-family:"Open Sans"; text-transform:capitalize}.eg-pk-new-events-element-2:hover{font-size:12px; line-height:20px; color:#990000; font-weight:800; border-radius:0px 0px 0px 0px ; background:#ffffff; font-family:"Open Sans"; text-transform:uppercase}.eg-pk-new-events-element-26:hover{font-size:16px; line-height:22px; color:#990000; font-weight:400; border-radius:0px 0px 0px 0px ; background:transparent; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}</style>
<style type="text/css">.eg-pk-new-events-container{background:rgba(255,255,255,0.90)}</style>
<style type="text/css">.eg-pk-new-events-content{background:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:left}</style>
<style type="text/css">.esg-grid .mainul li.eg-pk-new-events-wrapper{background:#3a4750; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<style type="text/css">.esg-grid .mainul li.eg-pk-new-events-wrapper .esg-media-poster{background-size:cover; background-position:center center; background-repeat:no-repeat}</style>
<!-- THE ESSENTIAL GRID 2.2.5 POST -->

<article class="myportfolio-container minimal-light source_type_post" id="esg-grid-62-2-wrap">

    <div id="esg-grid-62-2" class="esg-grid" style="background: transparent;padding: 0px 40px 0px 40px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; display:none">
<ul>
<li id="eg-62-post-id-138394" class="filterall filter-blog filter-kids-parkour filter-parkour eg-pk-new-events-wrapper eg-post-id-138394" data-date="1623658414" data-title="animal-pat">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2021/05/AnimalPaths_IG_Tiles_AnimalPaths-Medium.jpg" alt="" width="1366" height="683"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/animal-paths-curriculum-is-live/" target="_self"></a>                <div class="esg-overlay esg-transition eg-pk-new-events-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-138394 eg-pk-new-events-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-pk-new-events-content">
				<div class="esg-content eg-post-138394 eg-pk-new-events-element-0">Animal Paths Curriculum is L...</div>
				<div class="esg-content eg-post-138394 eg-pk-new-events-element-25">Helping kids develop body and mind through movement - the Animal Paths system of physical literacy!</div>
				<div class="esg-content eg-post-138394 eg-handlehideunder eg-pk-new-events-element-3" data-hideunder="2800" data-hidetype="visibility">June 14, 2021</div>
				<div class="esg-content eg-post-138394 eg-pk-new-events-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
<li id="eg-62-post-id-138425" class="filterall filter-blog filter-kids-parkour filter-london-parkour-school filter-pkgen-kids filter-pkgenlondon eg-pk-new-events-wrapper eg-post-id-138425" data-date="1623507624" data-title="london-par">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2021/06/Parkour-School-Group-Jump-Medium.jpg" alt="" width="1152" height="768"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/london-parkour-school-opens/" target="_self"></a>                <div class="esg-overlay esg-transition eg-pk-new-events-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-138425 eg-pk-new-events-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-pk-new-events-content">
				<div class="esg-content eg-post-138425 eg-pk-new-events-element-0">London Parkour School Opens!</div>
				<div class="esg-content eg-post-138425 eg-pk-new-events-element-25">We are delighted to announce the arrival of newest London facility, The Parkour School!

This purpose-built venue is dedicated to the physical and mental...</div>
				<div class="esg-content eg-post-138425 eg-handlehideunder eg-pk-new-events-element-3" data-hideunder="2800" data-hidetype="visibility">June 12, 2021</div>
				<div class="esg-content eg-post-138425 eg-pk-new-events-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
</ul>
    </div>

</article>
<div class="clear"></div>


		</div> 
	</div> </div></section>
 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<style type="text/css">a.eg-henryharrison-elemen1,a.eg-henryharrison-elemen-2{-webkit-transition:all .4s linear;   -moz-transition:all .4s linear;   -o-transition:all .4s linear;   -ms-transition:all .4s linear;   transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-media-poster{-webkit-transition:0.4s ease-in-out;  -moz-transition:0.4s ease-in-out;  -o-transition:0.4s ease-in-out;  transition:0.4s ease-in-out;  filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-media-poster,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-media-poster,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}</style>
<!-- CACHE CREATED FOR: 64 --><style type="text/css">.pkg-red .navigationbuttons,.pkg-red .esg-pagination,.pkg-red .esg-filters{text-transform:uppercase;  text-align:center}.pkg-red .esg-filterbutton,.pkg-red .esg-navigationbutton,.pkg-red .esg-sortbutton,.pkg-red .esg-cartbutton{color:#eaeaea;  margin-right:5px;  cursor:pointer;  position:relative;  z-index:2;  padding:1px 20px;  border:none;  line-height:38px;  font-size:12px;  font-weight:700;  font-family:"Open Sans",sans-serif;  display:inline-block;  background:#3A4750;  margin-bottom:5px}.pkg-red .esg-navigationbutton{padding:2px 12px}.pkg-red .esg-navigationbutton *{color:#eaeaea}.pkg-red .esg-pagination-button:last-child{margin-right:0}.pkg-red .esg-sortbutton-wrapper,.pkg-red .esg-cartbutton-wrapper{display:inline-block}.pkg-red .esg-sortbutton-order,.pkg-red .esg-cartbutton-order{display:inline-block;  vertical-align:top;  border:none;  width:40px;  line-height:40px;  font-size:12px;  font-weight:700;  color:#999;  cursor:pointer;  background:#3A4750;  margin-left:5px}.pkg-red .esg-cartbutton{color:#eaeaea;  cursor:default !important}.pkg-red .esg-cartbutton .esgicon-basket{color:#eaeaea;  font-size:15px;  line-height:15px;  margin-right:10px}.pkg-red .esg-cartbutton-wrapper{cursor:default !important}.pkg-red .esg-sortbutton,.pkg-red .esg-cartbutton{display:inline-block;  position:relative;  cursor:pointer;  margin-right:0px}.pkg-red .esg-navigationbutton:hover,.pkg-red .esg-filterbutton:hover,.pkg-red .esg-sortbutton:hover,.pkg-red .esg-sortbutton-order:hover,.pkg-red .esg-cartbutton-order:hover,.pkg-red .esg-filterbutton.selected{border-color:none;  color:#ffffff;  background:#990000}.pkg-red .esg-navigationbutton:hover *{color:#ffffff}.pkg-red .esg-sortbutton-order.tp-desc:hover{color:#3A4750}.pkg-red .esg-filter-checked{padding:1px 3px;  color:#eaeaea;  background:#3A4750;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}.pkg-red .esg-filterbutton.selected .esg-filter-checked,.pkg-red .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px;  color:#ffffff;  background:#3A4750;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}</style>
<style type="text/css">.eg-v5-homepage-news-element-0{font-size:16px; line-height:24px; color:#ffffff; font-weight:400; display:block; text-align:left; clear:both; margin:0px 0px 0px 0px ; padding:20px 20px 20px 20px ; border-radius:0px 0px 0px 0px ; background:#303841; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-v5-homepage-news-element-2{font-size:12px; line-height:20px; color:#ffffff; font-weight:800; display:inline-block; float:none; clear:both; margin:0px 0px 0px 0px ; padding:5px 10px 5px 10px ; border-radius:0px 0px 0px 0px ; background:#990000; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:uppercase}.eg-v5-homepage-news-element-25{font-size:14px; line-height:24px; color:#303841; font-weight:100; display:block; text-align:left; clear:both; margin:0px 0px 20px 0px ; padding:10px 10px 0px 10px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-v5-homepage-news-element-3{font-size:14px !important; line-height:24px !important; color:#303841 !important; font-weight:400 !important; display:inline-block !important; float:none !important; clear:none !important; margin:0px 0px 0px 0px !important; padding:10px 10px 10px 10px !important; border-radius:0px 0px 0px 0px !important; background:transparent !important; position:relative !important; z-index:2 !important; font-family:"Open Sans" !important; text-transform:capitalize !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#eaeaea !important; border-style:solid !important}.eg-v5-homepage-news-element-26{font-size:16px; line-height:22px; color:#303841; font-weight:400; display:inline-block; float:right; clear:right; margin:0px 0px 0px 0px ; padding:13px 13px 13px 13px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}</style>
<style type="text/css">.eg-v5-homepage-news-element-0:hover{font-size:16px; line-height:24px; color:#ffffff; font-weight:400; border-radius:0px 0px 0px 0px ; background:#303841; font-family:"Open Sans"; text-transform:capitalize}.eg-v5-homepage-news-element-2:hover{font-size:12px; line-height:20px; color:#990000; font-weight:800; border-radius:0px 0px 0px 0px ; background:#ffffff; font-family:"Open Sans"; text-transform:uppercase}.eg-v5-homepage-news-element-26:hover{font-size:16px; line-height:22px; color:#990000; font-weight:400; border-radius:0px 0px 0px 0px ; background:transparent; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}</style>
<style type="text/css">.eg-v5-homepage-news-container{background:rgba(255,255,255,0.90)}</style>
<style type="text/css">.eg-v5-homepage-news-content{background:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:left}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-news-wrapper{background:#3a4750; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-news-wrapper .esg-media-poster{background-size:cover; background-position:center center; background-repeat:no-repeat}</style>
<!-- THE ESSENTIAL GRID 2.2.5 POST -->

<article class="myportfolio-container pkg-red source_type_post" id="esg-grid-64-3-wrap">

    <div id="esg-grid-64-3" class="esg-grid" style="background: transparent;padding: 5px 40px 0px 40px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;">
<ul>
<li id="eg-64-post-id-138392" class="filterall filter-blog filter-adapt-qualifications filter-coaching filter-parkour eg-v5-homepage-news-wrapper eg-post-id-138392" data-date="1620738723" data-title="parkour-co" data-author="administrator">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/10/pkgwest-34.jpg" alt="" width="5616" height="3744"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/parkour-coach-certification-london-may-19-21/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-news-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-138392 eg-v5-homepage-news-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-v5-homepage-news-content">
				<div class="esg-content eg-post-138392 eg-v5-homepage-news-element-0">Parkour Coach Certification ...</div>
				<div class="esg-content eg-post-138392 eg-v5-homepage-news-element-25">Get into coaching parkour at the first UK ADAPT Level 1 Certification Course of 2021.</div>
				<div class="esg-content eg-post-138392 eg-v5-homepage-news-element-3">May 11, 2021</div>
				<div class="esg-content eg-post-138392 eg-v5-homepage-news-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
<li id="eg-64-post-id-138387" class="filterall filter-blog filter-netflix filter-parkour filter-parkour-generations filter-pkgen eg-v5-homepage-news-wrapper eg-post-id-138387" data-date="1619810334" data-title="netflix-co" data-author="administrator">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2021/04/Netflix-Logo.png" alt="" width="3840" height="2160"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/netflix-collaboration/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-news-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-138387 eg-v5-homepage-news-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-v5-homepage-news-content">
				<div class="esg-content eg-post-138387 eg-v5-homepage-news-element-0">Netflix Collaboration</div>
				<div class="esg-content eg-post-138387 eg-v5-homepage-news-element-25">Today saw the last full on-set rehearsal for our latest Netflix film collaboration, Matilda, following 6 months of preparation, choreography and training.</div>
				<div class="esg-content eg-post-138387 eg-v5-homepage-news-element-3">April 30, 2021</div>
				<div class="esg-content eg-post-138387 eg-v5-homepage-news-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
<li id="eg-64-post-id-138378" class="filterall filter-blog filter-adapt-qualifications filter-parkour filter-parkour-certification filter-parkour-coach filter-parkour-generations eg-v5-homepage-news-wrapper eg-post-id-138378" data-date="1617443658" data-title="parkour-co" data-author="administrator">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/Events.jpg" alt="" width="960" height="540"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/parkour-coach-certification-london/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-news-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-138378 eg-v5-homepage-news-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-v5-homepage-news-content">
				<div class="esg-content eg-post-138378 eg-v5-homepage-news-element-0">Parkour Coach Certification:...</div>
				<div class="esg-content eg-post-138378 eg-v5-homepage-news-element-25">Become a parkour coach with the global ADAPT Qualification!</div>
				<div class="esg-content eg-post-138378 eg-v5-homepage-news-element-3">April 3, 2021</div>
				<div class="esg-content eg-post-138378 eg-v5-homepage-news-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
<li id="eg-64-post-id-138376" class="filterall filter-blog filter-london filter-london-parkour filter-parkour filter-parkour-generations eg-v5-homepage-news-wrapper eg-post-id-138376" data-date="1617358982" data-title="london-out" data-author="administrator">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2017/02/cooldown.jpg" alt="" width="1024" height="1024"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/london-outdoor-classes-are-back/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-news-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-138376 eg-v5-homepage-news-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-v5-homepage-news-content">
				<div class="esg-content eg-post-138376 eg-v5-homepage-news-element-0">London Outdoor Classes Are B...</div>
				<div class="esg-content eg-post-138376 eg-v5-homepage-news-element-25">Get back to movement with London's original parkour classes NOW UP AND RUNNING!</div>
				<div class="esg-content eg-post-138376 eg-v5-homepage-news-element-3">April 2, 2021</div>
				<div class="esg-content eg-post-138376 eg-v5-homepage-news-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
</ul>
<article class="esg-filters esg-singlefilters" style="margin-top: 40px; text-align: center; "><div class="esg-pagination  esg-fgc-64" style="margin-left: 2.5px; margin-right: 2.5px;"></div></article><div class="esg-clear-no-height"></div>    </div>

</article>
<div class="clear"></div>


		</div> 
	</div> </div></section>
 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:20px;"></div>
</div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow ph_40  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#116628;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:20px;padding-bottom:20px;">
			 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:60px;"></div>
</div></section>
 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-3 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<h2 class="grey-underline" style="text-align: left;"><span style="color: #ffffff; font-size: 18pt; line-height: 30px; font-family: helvetica, arial, sans-serif;">Upcoming Events</span></h2>

		</div> 
	</div>  <div id="events" data-spacername="" class="blank_spacer col-sm-6 " style="height:1px;"></div>
 
	<div class="spb_content_element col-sm-3 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<p style="text-align: right; padding-top: 20px;"><span style="color: #3a4750; font-size: 14pt; line-height: 20px; font-family: helvetica, arial, sans-serif;"><a class="green-link" href="http://parkourgenerations.com/events/">All Events <i class="fa fa-chevron-right"></i></a> </span></p>

		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow ph_40  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#116628;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<style type="text/css">a.eg-henryharrison-elemen1,a.eg-henryharrison-elemen-2{-webkit-transition:all .4s linear;   -moz-transition:all .4s linear;   -o-transition:all .4s linear;   -ms-transition:all .4s linear;   transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-media-poster{-webkit-transition:0.4s ease-in-out;  -moz-transition:0.4s ease-in-out;  -o-transition:0.4s ease-in-out;  transition:0.4s ease-in-out;  filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-media-poster,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-media-poster,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}</style>
<!-- CACHE CREATED FOR: 67 --><style type="text/css">.minimal-light .navigationbuttons,.minimal-light .esg-pagination,.minimal-light .esg-filters{text-align:center}.minimal-light .esg-filterbutton,.minimal-light .esg-navigationbutton,.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton a{color:#999; margin-right:5px; cursor:pointer; padding:0px 16px; border:1px solid #e5e5e5; line-height:38px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; font-size:12px; font-weight:700; font-family:"Open Sans",sans-serif; display:inline-block; background:#fff; margin-bottom:5px}.minimal-light .esg-navigationbutton *{color:#999}.minimal-light .esg-navigationbutton{padding:0px 16px}.minimal-light .esg-pagination-button:last-child{margin-right:0}.minimal-light .esg-left,.minimal-light .esg-right{padding:0px 11px}.minimal-light .esg-sortbutton-wrapper,.minimal-light .esg-cartbutton-wrapper{display:inline-block}.minimal-light .esg-sortbutton-order,.minimal-light .esg-cartbutton-order{display:inline-block;  vertical-align:top;  border:1px solid #e5e5e5;  width:40px;  line-height:38px;  border-radius:0px 5px 5px 0px;  -moz-border-radius:0px 5px 5px 0px;  -webkit-border-radius:0px 5px 5px 0px;  font-size:12px;  font-weight:700;  color:#999;  cursor:pointer;  background:#fff}.minimal-light .esg-cartbutton{color:#333; cursor:default !important}.minimal-light .esg-cartbutton .esgicon-basket{color:#333;   font-size:15px;   line-height:15px;   margin-right:10px}.minimal-light .esg-cartbutton-wrapper{cursor:default !important}.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton{display:inline-block; position:relative; cursor:pointer; margin-right:0px; border-right:none; border-radius:5px 0px 0px 5px; -moz-border-radius:5px 0px 0px 5px; -webkit-border-radius:5px 0px 0px 5px}.minimal-light .esg-navigationbutton:hover,.minimal-light .esg-filterbutton:hover,.minimal-light .esg-sortbutton:hover,.minimal-light .esg-sortbutton-order:hover,.minimal-light .esg-cartbutton a:hover,.minimal-light .esg-filterbutton.selected{background-color:#fff;   border-color:#bbb;   color:#333;   box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-navigationbutton:hover *{color:#333}.minimal-light .esg-sortbutton-order.tp-desc:hover{border-color:#bbb; color:#333; box-shadow:0px -3px 5px 0px rgba(0,0,0,0.13) !important}.minimal-light .esg-filter-checked{padding:1px 3px;  color:#cbcbcb;  background:#cbcbcb;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}.minimal-light .esg-filterbutton.selected .esg-filter-checked,.minimal-light .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px;  color:#fff;  background:#000;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}</style>
<style type="text/css">.eg-pk-new-events-element-0{font-size:16px; line-height:24px; color:#ffffff; font-weight:400; display:block; text-align:left; clear:both; margin:0px 0px 0px 0px ; padding:20px 20px 20px 20px ; border-radius:0px 0px 0px 0px ; background:#303841; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-pk-new-events-element-2{font-size:12px; line-height:20px; color:#ffffff; font-weight:800; display:inline-block; float:none; clear:both; margin:0px 0px 0px 0px ; padding:5px 10px 5px 10px ; border-radius:0px 0px 0px 0px ; background:#990000; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:uppercase}.eg-pk-new-events-element-25{font-size:14px; line-height:24px; color:#303841; font-weight:100; display:block; text-align:left; clear:both; margin:0px 0px 20px 0px ; padding:10px 10px 0px 10px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-pk-new-events-element-3{font-size:14px !important; line-height:24px !important; color:#303841 !important; font-weight:400 !important; display:inline-block !important; float:none !important; clear:none !important; margin:0px 0px 0px 0px !important; padding:10px 10px 10px 10px !important; border-radius:0px 0px 0px 0px !important; background:transparent !important; position:relative !important; z-index:2 !important; font-family:"Open Sans" !important; text-transform:capitalize !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#eaeaea !important; border-style:solid !important}.eg-pk-new-events-element-26{font-size:16px; line-height:22px; color:#303841; font-weight:400; display:inline-block; float:right; clear:right; margin:0px 0px 0px 0px ; padding:13px 13px 13px 13px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}</style>
<style type="text/css">.eg-pk-new-events-element-0:hover{font-size:16px; line-height:24px; color:#ffffff; font-weight:400; border-radius:0px 0px 0px 0px ; background:#303841; font-family:"Open Sans"; text-transform:capitalize}.eg-pk-new-events-element-2:hover{font-size:12px; line-height:20px; color:#990000; font-weight:800; border-radius:0px 0px 0px 0px ; background:#ffffff; font-family:"Open Sans"; text-transform:uppercase}.eg-pk-new-events-element-26:hover{font-size:16px; line-height:22px; color:#990000; font-weight:400; border-radius:0px 0px 0px 0px ; background:transparent; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}</style>
<style type="text/css">.eg-pk-new-events-container{background:rgba(255,255,255,0.90)}</style>
<style type="text/css">.eg-pk-new-events-content{background:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:left}</style>
<style type="text/css">.esg-grid .mainul li.eg-pk-new-events-wrapper{background:#3a4750; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<style type="text/css">.esg-grid .mainul li.eg-pk-new-events-wrapper .esg-media-poster{background-size:cover; background-position:center center; background-repeat:no-repeat}</style>
<!-- THE ESSENTIAL GRID 2.2.5 POST -->

<article class="myportfolio-container minimal-light source_type_post" id="esg-grid-67-4-wrap">

    <div id="esg-grid-67-4" class="esg-grid" style="background: transparent;padding: 0px 0px 0px 0px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; display:none">
<ul>
<li id="eg-67-post-id-116207" class="filterall filter-pkg-uk-event eg-pk-new-events-wrapper eg-post-id-116207" data-date="1486469282">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/Perf_RDV_Group.jpg" alt="" width="1920" height="600"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/?pkgevents=rendezvous" target="_self"></a>                <div class="esg-overlay esg-transition eg-pk-new-events-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-116207 eg-pk-new-events-element-2 esg-transition" data-delay="0.1" data-transition="esg-flipup">READ MORE</div>
           </div>
<div class="esg-entry-content eg-pk-new-events-content">
				<div class="esg-content eg-post-116207 eg-pk-new-events-element-0">Rendezvous International Par...</div>
				<div class="esg-content eg-post-116207 eg-pk-new-events-element-25">13-15 August 2021: The world's signature annual international parkour gathering! Rendezvous is a three day training event taught by 25+ expert parkour and...</div>
				<div class="esg-content eg-post-116207 eg-handlehideunder eg-pk-new-events-element-3" data-hideunder="2800" data-hidetype="visibility">February 7, 2017</div>
				<div class="esg-content eg-post-116207 eg-pk-new-events-element-26"><i class="eg-icon-link-ext"></i></div>
</div>   </div>

</li>
</ul>
    </div>

</article>
<div class="clear"></div>


		</div> 
	</div> </div></section>
 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:160px;"></div>
</div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow ph_40 visible-lg  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#eaeaea;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:20px;padding-bottom:20px;">
			 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:60px;"></div>
</div></section>
 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-3 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<h2 class="orange-underline" style="text-align: left;"><span style="color: #3a4750; font-size: 18pt; line-height: 30px; font-family: helvetica, arial, sans-serif;">Parkour Spotlights</span></h2>

		</div> 
	</div>  <div id="spotlights" data-spacername="" class="blank_spacer col-sm-9 " style="height:1px;"></div>
</div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow visible-lg ph_40  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#eaeaea;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<style type="text/css">a.eg-henryharrison-elemen1,a.eg-henryharrison-elemen-2{-webkit-transition:all .4s linear;   -moz-transition:all .4s linear;   -o-transition:all .4s linear;   -ms-transition:all .4s linear;   transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-media-poster{-webkit-transition:0.4s ease-in-out;  -moz-transition:0.4s ease-in-out;  -o-transition:0.4s ease-in-out;  transition:0.4s ease-in-out;  filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-media-poster,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-media-poster,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}</style>
<!-- CACHE CREATED FOR: 71 --><style type="text/css">.minimal-light .navigationbuttons,.minimal-light .esg-pagination,.minimal-light .esg-filters{text-align:center}.minimal-light .esg-filterbutton,.minimal-light .esg-navigationbutton,.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton a{color:#999; margin-right:5px; cursor:pointer; padding:0px 16px; border:1px solid #e5e5e5; line-height:38px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; font-size:12px; font-weight:700; font-family:"Open Sans",sans-serif; display:inline-block; background:#fff; margin-bottom:5px}.minimal-light .esg-navigationbutton *{color:#999}.minimal-light .esg-navigationbutton{padding:0px 16px}.minimal-light .esg-pagination-button:last-child{margin-right:0}.minimal-light .esg-left,.minimal-light .esg-right{padding:0px 11px}.minimal-light .esg-sortbutton-wrapper,.minimal-light .esg-cartbutton-wrapper{display:inline-block}.minimal-light .esg-sortbutton-order,.minimal-light .esg-cartbutton-order{display:inline-block;  vertical-align:top;  border:1px solid #e5e5e5;  width:40px;  line-height:38px;  border-radius:0px 5px 5px 0px;  -moz-border-radius:0px 5px 5px 0px;  -webkit-border-radius:0px 5px 5px 0px;  font-size:12px;  font-weight:700;  color:#999;  cursor:pointer;  background:#fff}.minimal-light .esg-cartbutton{color:#333; cursor:default !important}.minimal-light .esg-cartbutton .esgicon-basket{color:#333;   font-size:15px;   line-height:15px;   margin-right:10px}.minimal-light .esg-cartbutton-wrapper{cursor:default !important}.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton{display:inline-block; position:relative; cursor:pointer; margin-right:0px; border-right:none; border-radius:5px 0px 0px 5px; -moz-border-radius:5px 0px 0px 5px; -webkit-border-radius:5px 0px 0px 5px}.minimal-light .esg-navigationbutton:hover,.minimal-light .esg-filterbutton:hover,.minimal-light .esg-sortbutton:hover,.minimal-light .esg-sortbutton-order:hover,.minimal-light .esg-cartbutton a:hover,.minimal-light .esg-filterbutton.selected{background-color:#fff;   border-color:#bbb;   color:#333;   box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-navigationbutton:hover *{color:#333}.minimal-light .esg-sortbutton-order.tp-desc:hover{border-color:#bbb; color:#333; box-shadow:0px -3px 5px 0px rgba(0,0,0,0.13) !important}.minimal-light .esg-filter-checked{padding:1px 3px;  color:#cbcbcb;  background:#cbcbcb;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}.minimal-light .esg-filterbutton.selected .esg-filter-checked,.minimal-light .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px;  color:#fff;  background:#000;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-element-0{font-size:18px; line-height:24px; color:#ffffff; font-weight:900; padding:20px 20px 20px 20px ; border-radius:0px 0px 0px 0px ; background:#222222; z-index:2 !important; display:block; font-family:"Open Sans"; text-transform:capitalize}.eg-v5-homepage-spotlight-posts-element-2{font-size:12px; line-height:20px; color:#ffffff; font-weight:800; padding:5px 10px 5px 10px ; border-radius:0px 0px 0px 0px ; background:#f26101; z-index:2 !important; display:block; font-family:"Open Sans"; text-transform:uppercase}.eg-v5-homepage-spotlight-posts-element-27{font-size:18px; line-height:24px; color:#ffffff; font-weight:400; display:block; text-align:left; clear:both; margin:0px 0px 0px 0px ; padding:10px 10px 10px 10px ; border-radius:0px 0px 0px 0px ; background:transparent; position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:capitalize}.eg-v5-homepage-spotlight-posts-element-3{font-size:14px !important; line-height:24px !important; color:#ffffff !important; font-weight:900 !important; padding:10px 10px 10px 10px !important; border-radius:0px 0px 0px 0px !important; background:#f26101 !important; z-index:2 !important; display:block; font-family:"Open Sans" !important; text-transform:capitalize !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#eaeaea !important; border-style:solid !important}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-element-0:hover{font-size:18px; line-height:24px; color:#f26101; font-weight:900; border-radius:0px 0px 0px 0px ; background:#222222; font-family:"Open Sans"; text-transform:capitalize}.eg-v5-homepage-spotlight-posts-element-2:hover{font-size:12px; line-height:20px; color:#f26101; font-weight:800; border-radius:0px 0px 0px 0px ; background:#ffffff; font-family:"Open Sans"; text-transform:uppercase}.eg-v5-homepage-spotlight-posts-element-3:hover{font-size:14px !important; line-height:24px !important; color:#f26101 !important; font-weight:900 !important; border-radius:0px 0px 0px 0px !important; background:#ffffff !important; font-family:"Open Sans" !important; text-transform:capitalize !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#eaeaea !important; border-style:solid !important}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-element-0-a{display:block; text-align:left; clear:both; margin:0px 0px 0px 0px ; position:relative}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-element-2-a{display:inline-block; float:none; clear:both; margin:0px 0px 0px 0px ; position:relative}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-element-3-a{display:inline-block !important; float:none !important; clear:none !important; margin:10px 10px 10px 10px !important; position:relative !important}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-container{background:rgba(255,255,255,0.90)}</style>
<style type="text/css">.eg-v5-homepage-spotlight-posts-content{background:#3a4750; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:left}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-spotlight-posts-wrapper{background:#222222; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-spotlight-posts-wrapper .esg-media-poster{background-size:cover; background-position:center center; background-repeat:no-repeat}</style>
<!-- THE ESSENTIAL GRID 2.2.5 POST -->

<article class="myportfolio-container minimal-light source_type_post" id="esg-grid-71-5-wrap">

    <div id="esg-grid-71-5" class="esg-grid" style="background: transparent;padding: 0px 40px 0px 40px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;">
<ul>
<li id="eg-71-post-id-342" class="filterall filter-articles filter-coaching eg-v5-homepage-spotlight-posts-wrapper eg-post-id-342" data-date="1396979573">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/04/download.jpg" alt="" width="1920" height="600"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/coaching-parkour-feedback-loop/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-spotlight-posts-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-342 eg-v5-homepage-spotlight-posts-element-2-a esg-transition" data-delay="0.1" data-transition="esg-flipup"><a class="eg-v5-homepage-spotlight-posts-element-2 eg-post-342" href="https://parkourgenerations.com/coaching-parkour-feedback-loop/" target="_blank">MORE DETAILS</a></div>
           </div>
<div class="esg-entry-content eg-v5-homepage-spotlight-posts-content">
				<div class="esg-content eg-post-342 eg-v5-homepage-spotlight-posts-element-0-a"><a class="eg-v5-homepage-spotlight-posts-element-0 eg-post-342" href="https://parkourgenerations.com/coaching-parkour-feedback-loop/" target="_blank">On Coaching Parkour: The Feedback Loop</a></div>
				<div class="esg-content eg-post-342 eg-v5-homepage-spotlight-posts-element-27">That’s something we’ve learned over the last decade or so of passing on the principles, methods and concepts of parkour to tens of thousands of people across every continent on the planet....</div>
				<div class="esg-content eg-post-342 eg-v5-homepage-spotlight-posts-element-3-a"><a class="eg-v5-homepage-spotlight-posts-element-3 eg-post-342" href="https://parkourgenerations.com/coaching-parkour-feedback-loop/" target="_self">Find out more</a></div>
</div>   </div>

</li>
<li id="eg-71-post-id-2403" class="filterall filter-articles filter-history eg-v5-homepage-spotlight-posts-wrapper eg-post-id-2403" data-date="1408615568">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/07/Certs_ADAPT_Blane.jpg" alt="" width="1920" height="600"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/le-parkour-overview/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-spotlight-posts-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-2403 eg-v5-homepage-spotlight-posts-element-2-a esg-transition" data-delay="0.1" data-transition="esg-flipup"><a class="eg-v5-homepage-spotlight-posts-element-2 eg-post-2403" href="https://parkourgenerations.com/le-parkour-overview/" target="_blank">MORE DETAILS</a></div>
           </div>
<div class="esg-entry-content eg-v5-homepage-spotlight-posts-content">
				<div class="esg-content eg-post-2403 eg-v5-homepage-spotlight-posts-element-0-a"><a class="eg-v5-homepage-spotlight-posts-element-0 eg-post-2403" href="https://parkourgenerations.com/le-parkour-overview/" target="_blank">Le Parkour - An Overview</a></div>
				<div class="esg-content eg-post-2403 eg-v5-homepage-spotlight-posts-element-27">Le Parkour (1) , originally named l’Art du Deplacement, though crystallised into its current guise by the Yamakasi sometime in the 1980s, is a practice the roots of which precede records.</div>
				<div class="esg-content eg-post-2403 eg-v5-homepage-spotlight-posts-element-3-a"><a class="eg-v5-homepage-spotlight-posts-element-3 eg-post-2403" href="https://parkourgenerations.com/le-parkour-overview/" target="_self">Find out more</a></div>
</div>   </div>

</li>
<li id="eg-71-post-id-2489" class="filterall filter-articles filter-history eg-v5-homepage-spotlight-posts-wrapper eg-post-id-2489" data-date="1408701851">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/08/Articles_Steph1.jpg" alt="" width="1920" height="600"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/parkour-history/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-spotlight-posts-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-2489 eg-v5-homepage-spotlight-posts-element-2-a esg-transition" data-delay="0.1" data-transition="esg-flipup"><a class="eg-v5-homepage-spotlight-posts-element-2 eg-post-2489" href="https://parkourgenerations.com/parkour-history/" target="_blank">MORE DETAILS</a></div>
           </div>
<div class="esg-entry-content eg-v5-homepage-spotlight-posts-content">
				<div class="esg-content eg-post-2489 eg-v5-homepage-spotlight-posts-element-0-a"><a class="eg-v5-homepage-spotlight-posts-element-0 eg-post-2489" href="https://parkourgenerations.com/parkour-history/" target="_blank">Parkour History</a></div>
				<div class="esg-content eg-post-2489 eg-v5-homepage-spotlight-posts-element-27">Trying to pinpoint the exact moment of the birth of Parkour is no easy task.</div>
				<div class="esg-content eg-post-2489 eg-v5-homepage-spotlight-posts-element-3-a"><a class="eg-v5-homepage-spotlight-posts-element-3 eg-post-2489" href="https://parkourgenerations.com/parkour-history/" target="_self">Find out more</a></div>
</div>   </div>

</li>
<li id="eg-71-post-id-8137" class="filterall filter-articles filter-training eg-v5-homepage-spotlight-posts-wrapper eg-post-id-8137" data-date="1417117832">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2014/09/Certs_ADAPT_Pete.jpg" alt="" width="1920" height="600"></div>

            <div class="esg-entry-cover esg-transition" data-delay="0" data-clickable="on" data-transition="esg-fade">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/moving-fear-2/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-spotlight-posts-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-center eg-post-8137 eg-v5-homepage-spotlight-posts-element-2-a esg-transition" data-delay="0.1" data-transition="esg-flipup"><a class="eg-v5-homepage-spotlight-posts-element-2 eg-post-8137" href="https://parkourgenerations.com/moving-fear-2/" target="_blank">MORE DETAILS</a></div>
           </div>
<div class="esg-entry-content eg-v5-homepage-spotlight-posts-content">
				<div class="esg-content eg-post-8137 eg-v5-homepage-spotlight-posts-element-0-a"><a class="eg-v5-homepage-spotlight-posts-element-0 eg-post-8137" href="https://parkourgenerations.com/moving-fear-2/" target="_blank">Moving Through Fear</a></div>
				<div class="esg-content eg-post-8137 eg-v5-homepage-spotlight-posts-element-27">It is the little fears that quietly steal our lives. The grand concerns – death, loss, the meaning of existence….</div>
				<div class="esg-content eg-post-8137 eg-v5-homepage-spotlight-posts-element-3-a"><a class="eg-v5-homepage-spotlight-posts-element-3 eg-post-8137" href="https://parkourgenerations.com/moving-fear-2/" target="_self">Find out more</a></div>
</div>   </div>

</li>
</ul>
    </div>

</article>
<div class="clear"></div>


		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow ph_40  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#eaeaea;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:20px;padding-bottom:20px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-3 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<h2 class="red-underline" style="text-align: left;"><span style="color: #3a4750; font-size: 18pt; line-height: 30px; font-family: helvetica, arial, sans-serif;">Latest Articles</span></h2>

		</div> 
	</div>  <div id="news" data-spacername="" class="blank_spacer col-sm-6 " style="height:1px;"></div>
 
	<div class="spb_content_element col-sm-3 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<p style="text-align: right; padding-top: 20px;"><span style="color: #3a4750; font-size: 14pt; line-height: 20px; font-family: helvetica, arial, sans-serif;"><a class="redlink" href="http://parkourgenerations.com/articles/">Article Archive <i class="fa fa-chevron-right"></i></a> </span></p>

		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width spb_parallax_asset sf-parallax parallax-content-height spb_content_element bg-type-cover col-sm-12 no-shadow  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="background-color:#eaeaea;padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<style type="text/css">a.eg-henryharrison-elemen1,a.eg-henryharrison-elemen-2{-webkit-transition:all .4s linear;   -moz-transition:all .4s linear;   -o-transition:all .4s linear;   -ms-transition:all .4s linear;   transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box;   -webkit-box-sizing:border-box;   -moz-box-sizing:border-box;   padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-media-poster{overflow:hidden; border-radius:50%;   -webkit-border-radius:50%;   -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-media-poster{-webkit-transition:0.4s ease-in-out;  -moz-transition:0.4s ease-in-out;  -o-transition:0.4s ease-in-out;  transition:0.4s ease-in-out;  filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-media-poster,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale");  -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-media-poster,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");   filter:gray;   -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-twitterstream-element-33-a{display:inline-block}.eg-twitterstream-element-35{word-break:break-all}.esg-overlay.eg-twitterstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.esg-content.eg-facebookstream-element-33-a{display:inline-block}.eg-facebookstream-element-0{word-break:break-all}.esg-overlay.eg-flickrstream-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}</style>
<!-- CACHE CREATED FOR: 74 --><style type="text/css">.minimal-light .navigationbuttons,.minimal-light .esg-pagination,.minimal-light .esg-filters{text-align:center}.minimal-light .esg-filterbutton,.minimal-light .esg-navigationbutton,.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton a{color:#999; margin-right:5px; cursor:pointer; padding:0px 16px; border:1px solid #e5e5e5; line-height:38px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; font-size:12px; font-weight:700; font-family:"Open Sans",sans-serif; display:inline-block; background:#fff; margin-bottom:5px}.minimal-light .esg-navigationbutton *{color:#999}.minimal-light .esg-navigationbutton{padding:0px 16px}.minimal-light .esg-pagination-button:last-child{margin-right:0}.minimal-light .esg-left,.minimal-light .esg-right{padding:0px 11px}.minimal-light .esg-sortbutton-wrapper,.minimal-light .esg-cartbutton-wrapper{display:inline-block}.minimal-light .esg-sortbutton-order,.minimal-light .esg-cartbutton-order{display:inline-block;  vertical-align:top;  border:1px solid #e5e5e5;  width:40px;  line-height:38px;  border-radius:0px 5px 5px 0px;  -moz-border-radius:0px 5px 5px 0px;  -webkit-border-radius:0px 5px 5px 0px;  font-size:12px;  font-weight:700;  color:#999;  cursor:pointer;  background:#fff}.minimal-light .esg-cartbutton{color:#333; cursor:default !important}.minimal-light .esg-cartbutton .esgicon-basket{color:#333;   font-size:15px;   line-height:15px;   margin-right:10px}.minimal-light .esg-cartbutton-wrapper{cursor:default !important}.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton{display:inline-block; position:relative; cursor:pointer; margin-right:0px; border-right:none; border-radius:5px 0px 0px 5px; -moz-border-radius:5px 0px 0px 5px; -webkit-border-radius:5px 0px 0px 5px}.minimal-light .esg-navigationbutton:hover,.minimal-light .esg-filterbutton:hover,.minimal-light .esg-sortbutton:hover,.minimal-light .esg-sortbutton-order:hover,.minimal-light .esg-cartbutton a:hover,.minimal-light .esg-filterbutton.selected{background-color:#fff;   border-color:#bbb;   color:#333;   box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-navigationbutton:hover *{color:#333}.minimal-light .esg-sortbutton-order.tp-desc:hover{border-color:#bbb; color:#333; box-shadow:0px -3px 5px 0px rgba(0,0,0,0.13) !important}.minimal-light .esg-filter-checked{padding:1px 3px;  color:#cbcbcb;  background:#cbcbcb;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}.minimal-light .esg-filterbutton.selected .esg-filter-checked,.minimal-light .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px;  color:#fff;  background:#000;  margin-left:7px;  font-size:9px;  font-weight:300;  line-height:9px;  vertical-align:middle}</style>
<style type="text/css">.eg-v5-homepage-articles-element-26{font-size:18px !important; line-height:30px !important; color:#ffffff !important; font-weight:900 !important; padding:20px 20px 0px 20px !important; border-radius:0px 0px 0px 0px !important; background:#990000 !important; z-index:2 !important; display:block; font-family:"Open Sans" !important; text-transform:capitalize !important}.eg-v5-homepage-articles-element-28{font-size:16px; line-height:22px; color:#ffffff; font-weight:400; padding:13px 13px 13px 13px ; border-radius:0px 0px 0px 0px ; background:#990000; z-index:2 !important; display:block; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}.eg-v5-homepage-articles-element-27{font-size:16px; line-height:30px; color:#eaeaea; font-weight:200; padding:20px 20px 20px 20px ; border-radius:0px 0px 0px 0px ; background:transparent; z-index:2 !important; display:block; font-family:"Open Sans"}.eg-v5-homepage-articles-element-29{font-size:14px !important; line-height:20px !important; color:#ffffff !important; font-weight:100 !important; padding:0px 20px 20px 20px !important; border-radius:0px 0px 0px 0px !important; background:#990000 !important; z-index:2 !important; display:block; font-family:"Open Sans" !important}</style>
<style type="text/css">.eg-v5-homepage-articles-element-28:hover{font-size:16px; line-height:22px; color:#990000; font-weight:400; border-radius:0px 0px 0px 0px ; background:#ffffff; border-top-width:0px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-color:#ffffff; border-style:solid}.eg-v5-homepage-articles-element-27:hover{font-size:16px; line-height:30px; color:#eaeaea; font-weight:200; border-radius:0px 0px 0px 0px ; background:transparent; font-family:"Open Sans"}</style>
<style type="text/css">.eg-v5-homepage-articles-element-26-a{display:block !important; text-align:left !important; clear:none !important; margin:0px 0px 0px 0px !important; position:relative !important}</style>
<style type="text/css">.eg-v5-homepage-articles-element-28-a{display:inline-block; float:right; clear:right; margin:0px 0px 0px 0px ; position:relative}</style>
<style type="text/css">.eg-v5-homepage-articles-element-27-a{display:block; text-align:left; clear:both; margin:0px 0px 0px 0px ; position:relative}</style>
<style type="text/css">.eg-v5-homepage-articles-element-29-a{display:block !important; text-align:left !important; clear:both !important; margin:0px 0px 0px 0px !important; position:relative !important}</style>
<style type="text/css">.eg-v5-homepage-articles-container{background:rgba(58,71,80,0.90)}</style>
<style type="text/css">.eg-v5-homepage-articles-content{background:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:left}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-articles-wrapper{background:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<style type="text/css">.esg-grid .mainul li.eg-v5-homepage-articles-wrapper .esg-media-poster{background-size:cover; background-position:center center; background-repeat:no-repeat}</style>
<!-- THE ESSENTIAL GRID 2.2.5 POST -->

<article class="myportfolio-container minimal-light source_type_post" id="esg-grid-74-6-wrap">

    <div id="esg-grid-74-6" class="esg-grid" style="background: transparent;padding: 0px 40px 0px 40px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;">
<ul>
<li id="eg-74-post-id-133758" class="filterall filter-articles filter-evie-waring filter-obstacle-course filter-ocr filter-parkour filter-parkour-generations eg-v5-homepage-articles-wrapper eg-post-id-133758" data-date="1564069951" data-title="parkour-fo">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2016/12/13996033_10153908917083366_772804586367724891_o.jpg" alt="" width="1920" height="1280"></div>

            <div class="esg-entry-cover" data-clickable="on">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/parkour-for-obstacle-racers/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-articles-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-bottom eg-post-133758 eg-v5-homepage-articles-element-28-a esg-transition" data-delay="0.3" data-transition="esg-rollleft"><a class="eg-v5-homepage-articles-element-28 eg-post-133758" href="https://parkourgenerations.com/parkour-for-obstacle-racers/" target="_self"><i class="eg-icon-link-ext"></i></a></div>
				<div class="esg-top eg-post-133758 eg-v5-homepage-articles-element-27-a esg-transition" data-delay="0" data-transition="esg-slidedown"><a class="eg-v5-homepage-articles-element-27 eg-post-133758" href="https://parkourgenerations.com/parkour-for-obstacle-racers/" target="_self">Learn why obstacle course racers should be learning parkour now!</a></div>
           </div>
<div class="esg-entry-content eg-v5-homepage-articles-content">
				<div class="esg-content eg-post-133758 eg-v5-homepage-articles-element-26-a"><a class="eg-v5-homepage-articles-element-26 eg-post-133758" href="https://parkourgenerations.com/parkour-for-obstacle-racers/" target="_self">Parkour for Obstacle Racers</a></div>
				<div class="esg-content eg-post-133758 eg-v5-homepage-articles-element-29-a"><a class="eg-v5-homepage-articles-element-29 eg-post-133758" href="https://parkourgenerations.com/parkour-for-obstacle-racers/" target="_self">July 25, 2019</a></div>
</div>   </div>

</li>
<li id="eg-74-post-id-133086" class="filterall filter-articles eg-v5-homepage-articles-wrapper eg-post-id-133086" data-date="1550597551" data-title="parkour-r">
    <div class="esg-media-cover-wrapper">
<div class="esg-entry-media"><img src="https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/images/300x200transparent.png" data-lazysrc="https://parkourgenerations.com/wp-content/uploads/2019/02/MG_3705-Small.jpg" alt="" width="720" height="480"></div>

            <div class="esg-entry-cover" data-clickable="on">

<a class="eg-invisiblebutton" href="https://parkourgenerations.com/parkour-resilience-in-motion/" target="_self"></a>                <div class="esg-overlay esg-transition eg-v5-homepage-articles-container" data-delay="0" data-transition="esg-fade"></div>

				<div class="esg-bottom eg-post-133086 eg-v5-homepage-articles-element-28-a esg-transition" data-delay="0.3" data-transition="esg-rollleft"><a class="eg-v5-homepage-articles-element-28 eg-post-133086" href="https://parkourgenerations.com/parkour-resilience-in-motion/" target="_self"><i class="eg-icon-link-ext"></i></a></div>
				<div class="esg-top eg-post-133086 eg-v5-homepage-articles-element-27-a esg-transition" data-delay="0" data-transition="esg-slidedown"><a class="eg-v5-homepage-articles-element-27 eg-post-133086" href="https://parkourgenerations.com/parkour-resilience-in-motion/" target="_self">You need to move in such a way that every sense is engaged, every muscle is being tested, your heart and lungs are working, your nervous system is firing, your brain is focused on the task at hand and your spirit is enjoying every minute of it.</a></div>
           </div>
<div class="esg-entry-content eg-v5-homepage-articles-content">
				<div class="esg-content eg-post-133086 eg-v5-homepage-articles-element-26-a"><a class="eg-v5-homepage-articles-element-26 eg-post-133086" href="https://parkourgenerations.com/parkour-resilience-in-motion/" target="_self">Parkour: Resilience in Motion</a></div>
				<div class="esg-content eg-post-133086 eg-v5-homepage-articles-element-29-a"><a class="eg-v5-homepage-articles-element-29 eg-post-133086" href="https://parkourgenerations.com/parkour-resilience-in-motion/" target="_self">February 19, 2019</a></div>
</div>   </div>

</li>
</ul>
    </div>

</article>
<div class="clear"></div>


		</div> 
	</div> </div></section>
 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:160px;"></div>
</div></section>
 
		</div> 
	</div></div></div></section>

				
				<div class="link-pages"></div>
				
								
			</div>
			
	
	<!-- CLOSE page -->
	</div>

		
	
</div>

<!--// WordPress Hook //-->
				
				<!--// CLOSE #page-wrap //-->			
				</div>
				
								
			<!--// CLOSE #main-container //-->
			</div>
						
			<div id="footer-wrap">
			
						
			<!--// OPEN #footer //-->
			<section id="footer" class="">
				<div class="container">
					<div id="footer-widgets" class="row clearfix">
																		
						<div class="col-sm-12">
													<section id="page_in_widget-2" class="widget page_in_widget clearfix"><section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:40px;"></div>
</div></section>
 <section  class="fw-row row-content-width asset-bg "><div class="container"><div class="row">
	<div class="spb-row-container spb-row-content-width spb_parallax_asset sf-parallax parallax-content-height spb_content_element bg-type-cover col-sm-12 no-shadow  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_sidebar_widget spb_content_element col-sm-3">
		<div class="spb_wrapper clearfix">
			<section id="nav_menu-13" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Training</span></h4></div><div class="menu-v5-footer-1-container"><ul id="menu-v5-footer-1" class="menu"><li id="menu-item-133776" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-133776"><a href="https://parkourgenerationslondon.com/training">London’s Original Parkour Classes</a></li>
<li id="menu-item-115658" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115658"><a href="https://parkourgenerations.com/online/">Online Training</a></li>
<li id="menu-item-115659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115659"><a href="https://parkourgenerations.com/tuition/">Private Tuition</a></li>
<li id="menu-item-115660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115660"><a href="https://parkourgenerations.com/events/">Events</a></li>
</ul></div></section><section id="nav_menu-14" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Pricing</span></h4></div><div class="menu-v5-footer-5-container"><ul id="menu-v5-footer-5" class="menu"><li id="menu-item-133778" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-133778"><a target="_blank" rel="noopener" href="https://app.glofox.com/portal/#/branch/5cc084031168a70b833ba6a6/memberships?header=memberships">Memberships</a></li>
</ul></div></section>
		</div> 
	</div>  
	<div class="spb_sidebar_widget spb_content_element col-sm-3">
		<div class="spb_wrapper clearfix">
			<section id="nav_menu-16" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Certifications</span></h4></div><div class="menu-v5-footer-2-container"><ul id="menu-v5-footer-2" class="menu"><li id="menu-item-133779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-133779"><a href="https://parkourgenerationslondon.com/education">Certifications</a></li>
<li id="menu-item-130070" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-130070"><a href="http://www.parkour.fitness">Parkour Fitness Specialist®</a></li>
<li id="menu-item-110750" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110750"><a href="http://adaptqualifications.com">ADAPT®</a></li>
<li id="menu-item-110751" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110751"><a href="http://parkourprograms.com">Parkour Programs®</a></li>
</ul></div></section><section id="nav_menu-17" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Store</span></h4></div><div class="menu-v5-footer-6-container"><ul id="menu-v5-footer-6" class="menu"><li id="menu-item-110769" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110769"><a href="http://store.parkourgenerations.com">PKGen Store</a></li>
<li id="menu-item-110770" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110770"><a href="http://https://store.parkourgenerations.com/collections/mens">Mens</a></li>
<li id="menu-item-110771" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110771"><a href="https://store.parkourgenerations.com/collections/womens">Womens</a></li>
<li id="menu-item-110772" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110772"><a href="https://store.parkourgenerations.com/collections/kids">Kids</a></li>
<li id="menu-item-110773" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110773"><a href="https://store.parkourgenerations.com/collections/new-arrivals">New Arrivals</a></li>
<li id="menu-item-110774" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110774"><a href="https://store.parkourgenerations.com/collections/classic-collection">Classic Tees</a></li>
</ul></div></section>
		</div> 
	</div>  
	<div class="spb_sidebar_widget spb_content_element col-sm-3">
		<div class="spb_wrapper clearfix">
			<section id="nav_menu-19" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Services</span></h4></div><div class="menu-v5-footer-3-container"><ul id="menu-v5-footer-3" class="menu"><li id="menu-item-115665" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115665"><a href="https://parkourgenerations.com/services/">Services</a></li>
<li id="menu-item-115664" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115664"><a href="https://parkourgenerations.com/performance/">Performance</a></li>
<li id="menu-item-115666" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115666"><a href="https://parkourgenerations.com/tactical/">Tactical</a></li>
<li id="menu-item-115663" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115663"><a href="https://parkourgenerations.com/overcome/">Overcome</a></li>
<li id="menu-item-115215" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-115215"><a href="https://parkourforschools.com">Schools</a></li>
</ul></div></section>
		</div> 
	</div>  
	<div class="spb_sidebar_widget spb_content_element col-sm-3">
		<div class="spb_wrapper clearfix">
			<section id="nav_menu-21" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Company</span></h4></div><div class="menu-v5-footer-4-container"><ul id="menu-v5-footer-4" class="menu"><li id="menu-item-110756" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-110756"><a href="https://parkourgenerations.com/contact/">Contact</a></li>
<li id="menu-item-115667" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-115667"><a href="https://parkourgenerations.com/company/">Company</a></li>
<li id="menu-item-110758" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-110758"><a href="https://parkourgenerations.com/dap/">Internships</a></li>
<li id="menu-item-110760" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-110760"><a href="https://parkourgenerations.com/network-coach-scheme/">Network Coach Scheme</a></li>
</ul></div></section><section id="nav_menu-22" class="widget widget_nav_menu clearfix"><div class="widget-heading clearfix"><h4 class="spb-heading"><span>Global Network</span></h4></div><div class="menu-v5-footer-8-container"><ul id="menu-v5-footer-8" class="menu"><li id="menu-item-131220" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-131220"><a target="_blank" rel="noopener" href="https://parkourgenerationslondon.com/">UK</a></li>
<li id="menu-item-110778" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110778"><a href="http://pkgenamericas.com">USA</a></li>
<li id="menu-item-110779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110779"><a href="http://www.parkourgenerations.com.br">Brasil</a></li>
<li id="menu-item-110780" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110780"><a href="https://www.parkourkorea.com/">South Korea</a></li>
<li id="menu-item-110781" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-110781"><a href="https://www.facebook.com/ParkourGenerationsTaiwan/">Taiwan</a></li>
</ul></div></section>
		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row"><div class="blank_spacer col-sm-4 " style="height:30px;"></div>
 
	<div class="spb_content_element col-sm-4 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<ul class="social-icons small grey">
<li class="facebook"><a href="https://www.facebook.com/parkourgenerations" target="_blank"><i class="fa-facebook"></i><i class="fa-facebook"></i></a></li>
<li class="twitter"><a href="http://www.twitter.com/PKGenerations" target="_blank"><i class="fa-twitter"></i><i class="fa-twitter"></i></a></li>
<li class="youtube"><a href="https://www.youtube.com/user/ParkourGenerations" target="_blank"><i class="fa-youtube"></i><i class="fa-youtube"></i></a></li>
<li class="vimeo"><a href="http://www.vimeo.com/parkourgenerations" target="_blank"><i class="fa-vimeo-square"></i><i class="fa-vimeo-square"></i></a></li>
<li class="instagram"><a href="http://instagram.com/ParkourGenerations" target="_blank"><i class="fa-instagram"></i><i class="fa-instagram"></i></a></li>
<li class="googleplus"><a href="https://plus.google.com/+PrkourgenerationsUK/about" target="_blank"><i class="fa-google-plus"></i><i class="fa-google-plus"></i></a></li>
</ul>


		</div> 
	</div> </div></section>
 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:20px;"></div>
</div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width spb_parallax_asset sf-parallax parallax-content-height spb_content_element bg-type-cover col-sm-12  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row">
	<div class="spb_content_element col-sm-12 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<hr />

		</div> 
	</div> </div></section>
 <section  class="container"><div class="row"><div class="blank_spacer col-sm-3 " style="height:30px;"></div>
 
	<div class="spb_content_element col-sm-8 spb_text_column">
		<div class="spb_wrapper clearfix">
			
<p style="text-align: center;"><script>(function() {
	window.mc4wp = window.mc4wp || {
		listeners: [],
		forms: {
			on: function(evt, cb) {
				window.mc4wp.listeners.push(
					{
						event   : evt,
						callback: cb
					}
				);
			}
		}
	}
})();
</script><!-- Mailchimp for WordPress v4.8.6 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id="mc4wp-form-1" class="mc4wp-form mc4wp-form-128900 mc4wp-form-basic" method="post" data-id="128900" data-name="Default sign-up form" ><div class="mc4wp-form-fields">  	<label for="mc4wp_email">Sign up for our Newsletter: </label>
	<input type="email" id="mc4wp_email" name="EMAIL" placeholder="Your email address" required />
	<input type="submit" value="Sign up" />


</div><label style="display: none !important;">Leave this field empty if you're human: <input type="text" name="_mc4wp_honeypot" value="" tabindex="-1" autocomplete="off" /></label><input type="hidden" name="_mc4wp_timestamp" value="1628152681" /><input type="hidden" name="_mc4wp_form_id" value="128900" /><input type="hidden" name="_mc4wp_form_element_id" value="mc4wp-form-1" /><div class="mc4wp-response"></div></form><!-- / Mailchimp for WordPress Plugin -->

		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>
 <section  class="fw-row asset-bg "><div class="container-fluid"><div class="row-fluid">
	<div class="spb-row-container spb-row-full-width col-sm-12 no-shadow  col-natural" data-v-center="true" data-top-style="" data-bottom-style=""  style="padding-left:0%;padding-right:0%;margin-top:0px;margin-bottom:0px;">
		<div class="spb_content_element" style="padding-top:0px;padding-bottom:0px;">
			 <section  class="container"><div class="row"><div class="blank_spacer col-sm-12 " style="height:9px;"></div>
</div></section>
 <section  class="container"><div class="row">
	<div class="spb_content_element spb_single_image noframe col-sm-2">
		<div class="spb_wrapper"><figure class="animated-overlay overlay-alt clearfix">
			<a class="img-link" href="https://www.sportengland.org/" target="_blank"></a><img width="132" height="132" src="https://parkourgenerations.com/wp-content/uploads/2014/09/Footer_sportengland_600x600-300x300.png" class="attachment-full size-full" alt="" loading="lazy" /><figcaption><div class="thumb-info thumb-info-alt"><i class="ss-navigateright"></i></div></figcaption></figure>
		</div> 
	</div>  
	<div class="spb_content_element spb_single_image noframe col-sm-2">
		<div class="spb_wrapper"><figure class="animated-overlay overlay-alt clearfix">
			<a class="img-link" href="http://www.londonchamber.co.uk" target="_blank"></a><img width="132" height="132" src="https://parkourgenerations.com/wp-content/uploads/2014/09/Footer_londonchamber_600x600-300x300.png" class="attachment-full size-full" alt="" loading="lazy" /><figcaption><div class="thumb-info thumb-info-alt"><i class="ss-navigateright"></i></div></figcaption></figure>
		</div> 
	</div>  
	<div class="spb_content_element spb_single_image noframe col-sm-2">
		<div class="spb_wrapper"><figure class="animated-overlay overlay-alt clearfix">
			<a class="img-link" href="http://www.ukactive.com/" target="_blank"></a><img width="132" height="132" src="https://parkourgenerations.com/wp-content/uploads/2014/09/Footer_ukactive_600x600-300x300.png" class="attachment-full size-full" alt="" loading="lazy" /><figcaption><div class="thumb-info thumb-info-alt"><i class="ss-navigateright"></i></div></figcaption></figure>
		</div> 
	</div>  
	<div class="spb_content_element spb_single_image noframe col-sm-2">
		<div class="spb_wrapper"><figure class="animated-overlay overlay-alt clearfix">
			<a class="img-link" href="http://www.parkouruk.org" target="_blank"></a><img width="132" height="132" src="https://parkourgenerations.com/wp-content/uploads/2014/09/Footer_pkuk_600x600-300x300.png" class="attachment-full size-full" alt="" loading="lazy" /><figcaption><div class="thumb-info thumb-info-alt"><i class="ss-navigateright"></i></div></figcaption></figure>
		</div> 
	</div>  
	<div class="spb_content_element spb_single_image noframe col-sm-2">
		<div class="spb_wrapper"><figure class="animated-overlay overlay-alt clearfix">
			<a class="img-link" href="http://www.adaptqualifications.com" target="_blank"></a><img width="132" height="132" src="https://parkourgenerations.com/wp-content/uploads/2014/09/Footer_adapt_600x600-300x300.png" class="attachment-full size-full" alt="" loading="lazy" /><figcaption><div class="thumb-info thumb-info-alt"><i class="ss-navigateright"></i></div></figcaption></figure>
		</div> 
	</div> </div></section>
 
		</div> 
	</div></div></div></section>

</section>												
						</div>
												
					</div>
				</div>	
			
			<!--// CLOSE #footer //-->
			</section>	
						
						
			<!--// OPEN #copyright //-->
			<footer id="copyright" class="copyright-divider">
				<div class="container">
<!--					<p>--><!----><!--</p>-->
                    <p>©2018 · Built with love by <a style="color:#999999" href="">Parkour</a> Generations</p>
                    <nav class="footer-menu std-menu">
											</nav>
				</div>
			<!--// CLOSE #copyright //-->
			</footer>
			
						
			</div>
		
		<!--// CLOSE #container //-->
		</div>
		
				
				<!--// BACK TO TOP //-->
		<div id="back-to-top" class="animate-top"><i class="ss-navigateup"></i></div>
				
		<!--// FULL WIDTH VIDEO //-->
		<div class="fw-video-area"><div class="fw-video-close"><i class="ss-delete"></i></div></div><div class="fw-video-spacer"></div>
		
								
		<!--// FRAMEWORK INCLUDES //-->
							<!--// GOOGLE FONT LOADER //-->
			<script>
				var html = document.getElementsByTagName('html')[0];
				html.className += '  wf-loading';
				setTimeout(function() {
					html.className = html.className.replace(' wf-loading', '');
				}, 3000);

				WebFontConfig = {
					google: { families: ['Open Sans:300',  'Vidaloka'] }
				};

				(function() {
					document.getElementsByTagName("html")[0].setAttribute("class","wf-loading")
					//  NEEDED to push the wf-loading class to your head
					document.getElementsByTagName("html")[0].setAttribute("className","wf-loading")
					// for IE

					var wf = document.createElement('script');
					wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
						'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
					wf.type = 'text/javascript';
					wf.async = 'false';
					var s = document.getElementsByTagName('script')[0];
					s.parentNode.insertBefore(wf, s);
				})();
			</script>
		
		<div id="sf-included" class="has-parallax disable-megamenu "></div>

		<!-- ANDYP Added for SiteSpeed 2 hour header -->
					<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-21145628-1', 'parkourgenerations.com');
  ga('send', 'pageview');

</script>
		
			
		<!--// WORDPRESS FOOTER HOOK //-->
		<script>(function() {function maybePrefixUrlField() {
	if (this.value.trim() !== '' && this.value.indexOf('http') !== 0) {
		this.value = "http://" + this.value;
	}
}

var urlFields = document.querySelectorAll('.mc4wp-form input[type="url"]');
if (urlFields) {
	for (var j=0; j < urlFields.length; j++) {
		urlFields[j].addEventListener('blur', maybePrefixUrlField);
	}
}
})();</script>			<div id="sf-option-params"
				data-lightbox-enabled="1"
				data-lightbox-nav="default"
				data-lightbox-thumbs="true"
				data-lightbox-skin="light"
				data-lightbox-sharing="true"
				data-slider-slidespeed="6000"
				data-slider-animspeed="500"
				data-slider-autoplay="0"></div>
		
		<script>
window.onclick = function (e) {
    if (e.target.localName == 'a' || e.target.localName == 'button' || e.target.type == 'submit') {
      linkOrButtonClicked();
    }
}
</script>			<script type="text/javascript">
				function revslider_showDoubleJqueryError(sliderID) {
					var errorMessage = "Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.";
					errorMessage += "<br> This includes make eliminates the revolution slider libraries, and make it not work.";
					errorMessage += "<br><br> To fix it you can:<br>&nbsp;&nbsp;&nbsp; 1. In the Slider Settings -> Troubleshooting set option:  <strong><b>Put JS Includes To Body</b></strong> option to true.";
					errorMessage += "<br>&nbsp;&nbsp;&nbsp; 2. Find the double jquery.js include and remove it.";
					errorMessage = "<span style='font-size:16px;color:#BC0C06;'>" + errorMessage + "</span>";
						jQuery(sliderID).show().html(errorMessage);
				}
			</script>
			<script type="text/javascript">
var essapi_58;
jQuery(document).ready(function() {
	essapi_58 = jQuery("#esg-grid-58-1").tpessential({
        gridID:58,
        layout:"cobbles",
        forceFullWidth:"off",
        lazyLoad:"on",
        lazyLoadColor:"#FFFFFF",
        row:1,
		apiName: "essapi_58",
        loadMoreAjaxToken:"d641f9c1e8",
        loadMoreAjaxUrl:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
        loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
        ajaxContentTarget:"ess-grid-ajax-container-",
        ajaxScrollToOffset:"0",
        ajaxCloseButton:"off",
        ajaxContentSliding:"on",
        ajaxScrollToOnLoad:"on",
        ajaxCallbackArgument:"off",
        ajaxNavButton:"off",
        ajaxCloseType:"type1",
        ajaxCloseInner:"false",
        ajaxCloseStyle:"light",
        ajaxClosePosition:"tr",
        space:2,
        pageAnimation:"fade",
        startAnimation: "none",
        startAnimationSpeed: 1000,
        startAnimationDelay: 100,
        startAnimationType: "item",
        animationType: "item",
        paginationScrollToTop:"off",
        paginationAutoplay:"off",
        spinner:"spinner0",
        lightBoxMode:"single",
		lightboxHash:"group",
		lightboxPostMinWid:"75%",
		lightboxPostMaxWid:"75%",
        lightboxSpinner:"off",
        lightBoxFeaturedImg:"off",
        lightBoxPostTitle:"off",
        lightBoxPostTitleTag:"h2",
		lightboxMargin : "0|0|0|0",
		lbContentPadding : "0|0|0|0",
		lbContentOverflow : "auto",
        cobblesPattern:"1x1,1x1,1x1,1x1,1x1",
        animSpeed:1000,
        delayBasic:1,
        mainhoverdelay:1,
        filterType:"single",
        showDropFilter:"hover",
        filterGroupClass:"esg-fgc-58",
        filterNoMatch:"No Items for the Selected Filter",
        filterDeepLink:"off",
        hideMarkups: "on",
        inViewport: true,
        viewportBuffer: 20,
        youtubeNoCookie:"",
        convertFilterMobile:false,
        googleFonts:['Open+Sans:400,600,700'],
        aspectratio:"4:3",
        responsiveEntries: [
						{ width:1400,amount:4,mmheight:0},
						{ width:1170,amount:4,mmheight:0},
						{ width:1024,amount:4,mmheight:0},
						{ width:960,amount:4,mmheight:0},
						{ width:778,amount:4,mmheight:0},
						{ width:640,amount:4,mmheight:0},
						{ width:480,amount:3,mmheight:0}
						]
	});

	var arrows = true,
        lightboxOptions = {
		margin : [0,0,0,0],
		buttons : ["share","thumbs","close"],
		infobar : true,
		loop : true,
		slideShow : {"autoStart": false, "speed": 3000},
		animationEffect : "fade",
		animationDuration : 500,
		beforeShow: function(a, c) {
          if(!arrows) {
              jQuery("body").addClass("esgbox-hidearrows");
          }
			var i = 0,
				multiple = false;
			a = a.slides;
			for(var b in a) {
				i++;
				if(i > 1) {
					multiple = true;
					break;
				}
			}
			if(!multiple) jQuery("body").addClass("esgbox-single");
			if(c.type === "image") jQuery(".esgbox-button--zoom").show();
		},
		beforeLoad: function(a, b) {
			jQuery("body").removeClass("esg-four-by-three");
			if(b.opts.$orig.data("ratio") === "4:3") jQuery("body").addClass("esg-four-by-three");
		},
		afterLoad: function() {jQuery(window).trigger("resize.esglb");},
		afterClose : function() {jQuery("body").removeClass("esgbox-hidearrows esgbox-single");},
		transitionEffect : "fade",
		transitionDuration : 500,
		hash : "group",
		arrows : true,
		wheel : false,
	};

	jQuery("#esg-grid-58-1").data("lightboxsettings", lightboxOptions);


});
</script>
<script type="text/javascript">
var essapi_62;
jQuery(document).ready(function() {
	essapi_62 = jQuery("#esg-grid-62-2").tpessential({
        gridID:62,
        layout:"masonry",
        forceFullWidth:"off",
        lazyLoad:"on",
        lazyLoadColor:"#FFFFFF",
        row:2,
		apiName: "essapi_62",
        loadMoreAjaxToken:"d641f9c1e8",
        loadMoreAjaxUrl:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
        loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
        ajaxContentTarget:"ess-grid-ajax-container-",
        ajaxScrollToOffset:"0",
        ajaxCloseButton:"off",
        ajaxContentSliding:"on",
        ajaxScrollToOnLoad:"on",
        ajaxCallbackArgument:"off",
        ajaxNavButton:"off",
        ajaxCloseType:"type1",
        ajaxCloseInner:"false",
        ajaxCloseStyle:"light",
        ajaxClosePosition:"tr",
        space:5,
        pageAnimation:"fade",
        startAnimation: "none",
        startAnimationSpeed: 1000,
        startAnimationDelay: 100,
        startAnimationType: "item",
        animationType: "item",
        paginationScrollToTop:"off",
        paginationAutoplay:"off",
        spinner:"spinner0",
        lightBoxMode:"single",
		lightboxHash:"group",
		lightboxPostMinWid:"75%",
		lightboxPostMaxWid:"75%",
        lightboxSpinner:"off",
        lightBoxFeaturedImg:"off",
        lightBoxPostTitle:"off",
        lightBoxPostTitleTag:"h2",
		lightboxMargin : "0|0|0|0",
		lbContentPadding : "0|0|0|0",
		lbContentOverflow : "auto",
        animSpeed:1000,
        delayBasic:1,
        mainhoverdelay:1,
        filterType:"single",
        showDropFilter:"hover",
        filterGroupClass:"esg-fgc-62",
        filterNoMatch:"No Items for the Selected Filter",
        filterDeepLink:"off",
        hideMarkups: "on",
        inViewport: true,
        viewportBuffer: 20,
        youtubeNoCookie:"",
        convertFilterMobile:false,
        googleFonts:['Open+Sans:400,600,700'],
        aspectratio:"16:9",
        responsiveEntries: [
						{ width:1400,amount:2,mmheight:0},
						{ width:1170,amount:2,mmheight:0},
						{ width:1024,amount:2,mmheight:0},
						{ width:960,amount:2,mmheight:0},
						{ width:778,amount:2,mmheight:0},
						{ width:640,amount:2,mmheight:0},
						{ width:480,amount:1,mmheight:0}
						]
	});

	var arrows = true,
        lightboxOptions = {
		margin : [0,0,0,0],
		buttons : ["share","thumbs","close"],
		infobar : true,
		loop : true,
		slideShow : {"autoStart": false, "speed": 3000},
		animationEffect : "fade",
		animationDuration : 500,
		beforeShow: function(a, c) {
          if(!arrows) {
              jQuery("body").addClass("esgbox-hidearrows");
          }
			var i = 0,
				multiple = false;
			a = a.slides;
			for(var b in a) {
				i++;
				if(i > 1) {
					multiple = true;
					break;
				}
			}
			if(!multiple) jQuery("body").addClass("esgbox-single");
			if(c.type === "image") jQuery(".esgbox-button--zoom").show();
		},
		beforeLoad: function(a, b) {
			jQuery("body").removeClass("esg-four-by-three");
			if(b.opts.$orig.data("ratio") === "4:3") jQuery("body").addClass("esg-four-by-three");
		},
		afterLoad: function() {jQuery(window).trigger("resize.esglb");},
		afterClose : function() {jQuery("body").removeClass("esgbox-hidearrows esgbox-single");},
		transitionEffect : "fade",
		transitionDuration : 500,
		hash : "group",
		arrows : true,
		wheel : false,
	};

	jQuery("#esg-grid-62-2").data("lightboxsettings", lightboxOptions);


});
</script>
<script type="text/javascript">
var essapi_64;
jQuery(document).ready(function() {
	essapi_64 = jQuery("#esg-grid-64-3").tpessential({
        gridID:64,
        layout:"masonry",
        forceFullWidth:"off",
        lazyLoad:"on",
        lazyLoadColor:"#eaeaea",
        row:1,
		apiName: "essapi_64",
        loadMoreAjaxToken:"d641f9c1e8",
        loadMoreAjaxUrl:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
        loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
        ajaxContentTarget:"ess-grid-ajax-container-",
        ajaxScrollToOffset:"0",
        ajaxCloseButton:"off",
        ajaxContentSliding:"on",
        ajaxScrollToOnLoad:"on",
        ajaxCallbackArgument:"off",
        ajaxNavButton:"off",
        ajaxCloseType:"type1",
        ajaxCloseInner:"false",
        ajaxCloseStyle:"light",
        ajaxClosePosition:"tr",
        space:5,
        pageAnimation:"horizontal-slide",
        startAnimation: "none",
        startAnimationSpeed: 1000,
        startAnimationDelay: 100,
        startAnimationType: "item",
        animationType: "item",
        smartPagination:"off",
        paginationScrollToTop:"off",
        paginationAutoplay:"off",
        spinner:"spinner0",
        lightBoxMode:"single",
		lightboxHash:"group",
		lightboxPostMinWid:"75%",
		lightboxPostMaxWid:"75%",
        lightboxSpinner:"off",
        lightBoxFeaturedImg:"off",
        lightBoxPostTitle:"off",
        lightBoxPostTitleTag:"h2",
		lightboxMargin : "0|0|0|0",
		lbContentPadding : "0|0|0|0",
		lbContentOverflow : "auto",
        animSpeed:1000,
        delayBasic:1,
        mainhoverdelay:1,
        filterType:"single",
        showDropFilter:"hover",
        filterGroupClass:"esg-fgc-64",
        filterNoMatch:"No Items for the Selected Filter",
        filterDeepLink:"off",
        hideMarkups: "on",
        inViewport: true,
        viewportBuffer: 20,
        youtubeNoCookie:"",
        convertFilterMobile:false,
        googleFonts:['Open+Sans:400,600,700'],
        aspectratio:"16:9",
        responsiveEntries: [
						{ width:1400,amount:4,mmheight:0},
						{ width:1170,amount:4,mmheight:0},
						{ width:1024,amount:4,mmheight:0},
						{ width:960,amount:3,mmheight:0},
						{ width:778,amount:3,mmheight:0},
						{ width:640,amount:3,mmheight:0},
						{ width:480,amount:2,mmheight:0}
						]
	});

	var arrows = true,
        lightboxOptions = {
		margin : [0,0,0,0],
		buttons : ["share","thumbs","close"],
		infobar : true,
		loop : true,
		slideShow : {"autoStart": false, "speed": 3000},
		animationEffect : "fade",
		animationDuration : 500,
		beforeShow: function(a, c) {
          if(!arrows) {
              jQuery("body").addClass("esgbox-hidearrows");
          }
			var i = 0,
				multiple = false;
			a = a.slides;
			for(var b in a) {
				i++;
				if(i > 1) {
					multiple = true;
					break;
				}
			}
			if(!multiple) jQuery("body").addClass("esgbox-single");
			if(c.type === "image") jQuery(".esgbox-button--zoom").show();
		},
		beforeLoad: function(a, b) {
			jQuery("body").removeClass("esg-four-by-three");
			if(b.opts.$orig.data("ratio") === "4:3") jQuery("body").addClass("esg-four-by-three");
		},
		afterLoad: function() {jQuery(window).trigger("resize.esglb");},
		afterClose : function() {jQuery("body").removeClass("esgbox-hidearrows esgbox-single");},
		transitionEffect : "fade",
		transitionDuration : 366,
		hash : "group",
		arrows : true,
		wheel : false,
	};

	jQuery("#esg-grid-64-3").data("lightboxsettings", lightboxOptions);


});
</script>
<script type="text/javascript">
var essapi_67;
jQuery(document).ready(function() {
	essapi_67 = jQuery("#esg-grid-67-4").tpessential({
        gridID:67,
        layout:"masonry",
        forceFullWidth:"off",
        lazyLoad:"on",
        lazyLoadColor:"#FFFFFF",
        row:1,
		apiName: "essapi_67",
        loadMoreAjaxToken:"d641f9c1e8",
        loadMoreAjaxUrl:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
        loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
        ajaxContentTarget:"ess-grid-ajax-container-",
        ajaxScrollToOffset:"0",
        ajaxCloseButton:"off",
        ajaxContentSliding:"on",
        ajaxScrollToOnLoad:"on",
        ajaxCallbackArgument:"off",
        ajaxNavButton:"off",
        ajaxCloseType:"type1",
        ajaxCloseInner:"false",
        ajaxCloseStyle:"light",
        ajaxClosePosition:"tr",
        space:5,
        pageAnimation:"fade",
        startAnimation: "none",
        startAnimationSpeed: 1000,
        startAnimationDelay: 100,
        startAnimationType: "item",
        animationType: "item",
        paginationScrollToTop:"off",
        paginationAutoplay:"off",
        spinner:"spinner0",
        lightBoxMode:"single",
		lightboxHash:"group",
		lightboxPostMinWid:"75%",
		lightboxPostMaxWid:"75%",
        lightboxSpinner:"off",
        lightBoxFeaturedImg:"off",
        lightBoxPostTitle:"off",
        lightBoxPostTitleTag:"h2",
		lightboxMargin : "0|0|0|0",
		lbContentPadding : "0|0|0|0",
		lbContentOverflow : "auto",
        animSpeed:1000,
        delayBasic:1,
        mainhoverdelay:1,
        filterType:"single",
        showDropFilter:"hover",
        filterGroupClass:"esg-fgc-67",
        filterNoMatch:"No Items for the Selected Filter",
        filterDeepLink:"off",
        hideMarkups: "on",
        inViewport: true,
        viewportBuffer: 20,
        youtubeNoCookie:"",
        convertFilterMobile:false,
        googleFonts:['Open+Sans:400,600,700'],
        aspectratio:"16:9",
        responsiveEntries: [
						{ width:1400,amount:2,mmheight:0},
						{ width:1170,amount:2,mmheight:0},
						{ width:1024,amount:2,mmheight:0},
						{ width:960,amount:2,mmheight:0},
						{ width:778,amount:2,mmheight:0},
						{ width:640,amount:2,mmheight:0},
						{ width:480,amount:1,mmheight:0}
						]
	});

	var arrows = true,
        lightboxOptions = {
		margin : [0,0,0,0],
		buttons : ["share","thumbs","close"],
		infobar : true,
		loop : true,
		slideShow : {"autoStart": false, "speed": 3000},
		animationEffect : "fade",
		animationDuration : 500,
		beforeShow: function(a, c) {
          if(!arrows) {
              jQuery("body").addClass("esgbox-hidearrows");
          }
			var i = 0,
				multiple = false;
			a = a.slides;
			for(var b in a) {
				i++;
				if(i > 1) {
					multiple = true;
					break;
				}
			}
			if(!multiple) jQuery("body").addClass("esgbox-single");
			if(c.type === "image") jQuery(".esgbox-button--zoom").show();
		},
		beforeLoad: function(a, b) {
			jQuery("body").removeClass("esg-four-by-three");
			if(b.opts.$orig.data("ratio") === "4:3") jQuery("body").addClass("esg-four-by-three");
		},
		afterLoad: function() {jQuery(window).trigger("resize.esglb");},
		afterClose : function() {jQuery("body").removeClass("esgbox-hidearrows esgbox-single");},
		transitionEffect : "fade",
		transitionDuration : 500,
		hash : "group",
		arrows : true,
		wheel : false,
	};

	jQuery("#esg-grid-67-4").data("lightboxsettings", lightboxOptions);


});
</script>
<script type="text/javascript">
var essapi_71;
jQuery(document).ready(function() {
	essapi_71 = jQuery("#esg-grid-71-5").tpessential({
        gridID:71,
        layout:"masonry",
        forceFullWidth:"off",
        lazyLoad:"on",
        lazyLoadColor:"#FFFFFF",
        row:2,
		apiName: "essapi_71",
        loadMoreAjaxToken:"d641f9c1e8",
        loadMoreAjaxUrl:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
        loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
        ajaxContentTarget:"ess-grid-ajax-container-",
        ajaxScrollToOffset:"0",
        ajaxCloseButton:"off",
        ajaxContentSliding:"on",
        ajaxScrollToOnLoad:"on",
        ajaxCallbackArgument:"off",
        ajaxNavButton:"off",
        ajaxCloseType:"type1",
        ajaxCloseInner:"false",
        ajaxCloseStyle:"light",
        ajaxClosePosition:"tr",
        space:5,
        pageAnimation:"fade",
        startAnimation: "none",
        startAnimationSpeed: 1000,
        startAnimationDelay: 100,
        startAnimationType: "item",
        animationType: "item",
        paginationScrollToTop:"off",
        paginationAutoplay:"off",
        spinner:"spinner0",
        forceFullWidth:"on",
        lightBoxMode:"single",
		lightboxHash:"group",
		lightboxPostMinWid:"75%",
		lightboxPostMaxWid:"75%",
        lightboxSpinner:"off",
        lightBoxFeaturedImg:"off",
        lightBoxPostTitle:"off",
        lightBoxPostTitleTag:"h2",
		lightboxMargin : "0|0|0|0",
		lbContentPadding : "0|0|0|0",
		lbContentOverflow : "auto",
        animSpeed:1000,
        delayBasic:1,
        mainhoverdelay:1,
        filterType:"single",
        showDropFilter:"hover",
        filterGroupClass:"esg-fgc-71",
        filterNoMatch:"No Items for the Selected Filter",
        filterDeepLink:"off",
        hideMarkups: "on",
        inViewport: true,
        viewportBuffer: 20,
        youtubeNoCookie:"",
        convertFilterMobile:false,
        googleFonts:['Open+Sans:400,600,700'],
        aspectratio:"16:9",
        responsiveEntries: [
						{ width:1400,amount:2,mmheight:0},
						{ width:1170,amount:2,mmheight:0},
						{ width:1024,amount:2,mmheight:0},
						{ width:960,amount:2,mmheight:0},
						{ width:778,amount:2,mmheight:0},
						{ width:640,amount:2,mmheight:0},
						{ width:480,amount:1,mmheight:0}
						]
	});

	var arrows = true,
        lightboxOptions = {
		margin : [0,0,0,0],
		buttons : ["share","thumbs","close"],
		infobar : true,
		loop : true,
		slideShow : {"autoStart": false, "speed": 3000},
		animationEffect : "fade",
		animationDuration : 500,
		beforeShow: function(a, c) {
          if(!arrows) {
              jQuery("body").addClass("esgbox-hidearrows");
          }
			var i = 0,
				multiple = false;
			a = a.slides;
			for(var b in a) {
				i++;
				if(i > 1) {
					multiple = true;
					break;
				}
			}
			if(!multiple) jQuery("body").addClass("esgbox-single");
			if(c.type === "image") jQuery(".esgbox-button--zoom").show();
		},
		beforeLoad: function(a, b) {
			jQuery("body").removeClass("esg-four-by-three");
			if(b.opts.$orig.data("ratio") === "4:3") jQuery("body").addClass("esg-four-by-three");
		},
		afterLoad: function() {jQuery(window).trigger("resize.esglb");},
		afterClose : function() {jQuery("body").removeClass("esgbox-hidearrows esgbox-single");},
		transitionEffect : "fade",
		transitionDuration : 366,
		hash : "group",
		arrows : true,
		wheel : false,
	};

	jQuery("#esg-grid-71-5").data("lightboxsettings", lightboxOptions);


});
</script>
<script type="text/javascript">
var essapi_74;
jQuery(document).ready(function() {
	essapi_74 = jQuery("#esg-grid-74-6").tpessential({
        gridID:74,
        layout:"masonry",
        forceFullWidth:"off",
        lazyLoad:"on",
        lazyLoadColor:"#FFFFFF",
        row:2,
		apiName: "essapi_74",
        loadMoreAjaxToken:"d641f9c1e8",
        loadMoreAjaxUrl:"https://parkourgenerations.com/wp-admin/admin-ajax.php",
        loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
        ajaxContentTarget:"ess-grid-ajax-container-",
        ajaxScrollToOffset:"0",
        ajaxCloseButton:"off",
        ajaxContentSliding:"on",
        ajaxScrollToOnLoad:"on",
        ajaxCallbackArgument:"off",
        ajaxNavButton:"off",
        ajaxCloseType:"type1",
        ajaxCloseInner:"false",
        ajaxCloseStyle:"light",
        ajaxClosePosition:"tr",
        space:5,
        pageAnimation:"fade",
        startAnimation: "none",
        startAnimationSpeed: 1000,
        startAnimationDelay: 100,
        startAnimationType: "item",
        animationType: "item",
        paginationScrollToTop:"off",
        paginationAutoplay:"off",
        spinner:"spinner0",
        lightBoxMode:"single",
		lightboxHash:"group",
		lightboxPostMinWid:"75%",
		lightboxPostMaxWid:"75%",
        lightboxSpinner:"off",
        lightBoxFeaturedImg:"off",
        lightBoxPostTitle:"off",
        lightBoxPostTitleTag:"h2",
		lightboxMargin : "0|0|0|0",
		lbContentPadding : "0|0|0|0",
		lbContentOverflow : "auto",
        animSpeed:1000,
        delayBasic:1,
        mainhoverdelay:1,
        filterType:"single",
        showDropFilter:"hover",
        filterGroupClass:"esg-fgc-74",
        filterNoMatch:"No Items for the Selected Filter",
        filterDeepLink:"off",
        hideMarkups: "on",
        inViewport: true,
        viewportBuffer: 20,
        youtubeNoCookie:"",
        convertFilterMobile:false,
        googleFonts:['Open+Sans:400,600,700'],
        aspectratio:"16:9",
        responsiveEntries: [
						{ width:1400,amount:2,mmheight:0},
						{ width:1170,amount:2,mmheight:0},
						{ width:1024,amount:2,mmheight:0},
						{ width:960,amount:2,mmheight:0},
						{ width:778,amount:2,mmheight:0},
						{ width:640,amount:2,mmheight:0},
						{ width:480,amount:1,mmheight:0}
						]
	});

	var arrows = true,
        lightboxOptions = {
		margin : [0,0,0,0],
		buttons : ["share","thumbs","close"],
		infobar : true,
		loop : true,
		slideShow : {"autoStart": false, "speed": 3000},
		animationEffect : "fade",
		animationDuration : 500,
		beforeShow: function(a, c) {
          if(!arrows) {
              jQuery("body").addClass("esgbox-hidearrows");
          }
			var i = 0,
				multiple = false;
			a = a.slides;
			for(var b in a) {
				i++;
				if(i > 1) {
					multiple = true;
					break;
				}
			}
			if(!multiple) jQuery("body").addClass("esgbox-single");
			if(c.type === "image") jQuery(".esgbox-button--zoom").show();
		},
		beforeLoad: function(a, b) {
			jQuery("body").removeClass("esg-four-by-three");
			if(b.opts.$orig.data("ratio") === "4:3") jQuery("body").addClass("esg-four-by-three");
		},
		afterLoad: function() {jQuery(window).trigger("resize.esglb");},
		afterClose : function() {jQuery("body").removeClass("esgbox-hidearrows esgbox-single");},
		transitionEffect : "fade",
		transitionDuration : 366,
		hash : "group",
		arrows : true,
		wheel : false,
	};

	jQuery("#esg-grid-74-6").data("lightboxsettings", lightboxOptions);


});
</script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/js/jquery.themepunch.tools.min.js?ver=2.2.5' id='tp-tools-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/bootstrap.min.js' id='bootstrap-js-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/jquery-ui-1.10.2.custom.min.js' id='jquery-ui-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/jquery.flexslider-min.js' id='flexslider-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/jquery.easing.js' id='easing-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/owl.carousel.min.js' id='owlcarousel-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/theme-scripts.js' id='sf-theme-scripts-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/ilightbox.min.js' id='ilightbox-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/jquery.isotope.min.js' id='isotope-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/imagesloaded.js' id='imagesLoaded-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/combine/jquery.infinitescroll.min.js' id='infinite-scroll-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/themes/dante/js/functions.js' id='sf-functions-js'></script>
<script type='text/javascript' src='https://checkout.stripe.com/checkout.js' id='stripe-checkout-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/js/vendor/accounting.js?ver=2.5.4' id='stripe-checkout-pro-accounting-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/js/vendor/parsley.js?ver=2.5.4' id='stripe-checkout-pro-parsley-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/js/vendor/moment.js?ver=2.5.4' id='stripe-checkout-pro-moment-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/js/vendor/pikaday.js?ver=2.5.4' id='stripe-checkout-pro-pikaday-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/js/vendor/pikaday.jquery.js?ver=2.5.4' id='stripe-checkout-pro-pikaday-jquery-js'></script>
<script type='text/javascript' id='stripe-checkout-pro-public-js-extra'>
/* <![CDATA[ */
var simplePayFrontendGlobals = {"ajaxurl":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"6d17807766","paymentSubmittingButtonLabel":"Please wait...","couponAmountOffText":"off","zeroAmountCheckoutButtonLabel":"Start Now","zeroDecimalCurrencies":["BIF","CLP","DJF","GNF","JPY","KMF","KRW","MGA","PYG","RWF","VND","VUV","XAF","XOF","XPF"],"scriptDebug":"true"};
var simplePayFormSettings = null;
/* ]]> */
</script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/wp-simple-pay-pro-for-stripe/assets/js/pro-public.js?ver=2.5.4' id='stripe-checkout-pro-public-js'></script>
<script type='text/javascript' src='//maps.google.com/maps/api/js?key=' id='google-maps-js'></script>
<script type='text/javascript' id='ubermenu-js-extra'>
/* <![CDATA[ */
var ubermenu_data = {"remove_conflicts":"off","reposition_on_load":"off","intent_delay":"400","intent_interval":"20","intent_threshold":"7","scrollto_offset":"50","scrollto_duration":"1000","responsive_breakpoint":"10","accessible":"on","retractor_display_strategy":"responsive","touch_off_close":"on","collapse_after_scroll":"off","v":"3.2.5","configurations":["submenu","slidermenu","mobilemenu","main"],"ajax_url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","plugin_url":"https:\/\/parkourgenerations.com\/wp-content\/plugins\/ubermenu\/"};
/* ]]> */
</script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/ubermenu/assets/js/ubermenu.js?ver=3.2.5' id='ubermenu-js'></script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-includes/js/wp-embed.js?ver=5.8' id='wp-embed-js'></script>
<script type='text/javascript' id='essential-grid-essential-grid-script-js-extra'>
/* <![CDATA[ */
var eg_ajax_var = {"url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"a23e4c8a75"};
var eg_ajax_var = {"url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"a23e4c8a75"};
var eg_ajax_var = {"url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"a23e4c8a75"};
var eg_ajax_var = {"url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"a23e4c8a75"};
var eg_ajax_var = {"url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"a23e4c8a75"};
var eg_ajax_var = {"url":"https:\/\/parkourgenerations.com\/wp-admin\/admin-ajax.php","nonce":"a23e4c8a75"};
/* ]]> */
</script>
<script type='text/javascript' src='https://parkourgenerations.com/wp-content/plugins/essential-grid/public/assets/js/jquery.themepunch.essential.min.js?ver=2.2.5' id='essential-grid-essential-grid-script-js'></script>
<script type='text/javascript' defer src='https://parkourgenerations.com/wp-content/plugins/mailchimp-for-wp/assets/js/forms.js?ver=4.8.6' id='mc4wp-forms-api-js'></script>
	
	<!--// CLOSE BODY //-->
	 <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDQ007lAfrIfYcxsn_ej4Rb4UvEL2pWY7E&callback=initMap" async defer></script>
	</body>


<!--// CLOSE HTML //-->
</html>