<!doctype html>
<html lang="en-US">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<!-- <link rel="profile" href="https://gmpg.org/xfn/11"> -->

	    <style>
        #wpadminbar #wp-admin-bar-p404_free_top_button .ab-icon:before {
            content: "\f103";
            color:red;
            top: 2px;
        }
    </style>
    <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" data-pagespeed-no-defer>
	var gtm4wp_datalayer_name = "dataLayer";
	var dataLayer = dataLayer || [];
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
	<!-- This site is optimized with the Yoast SEO Premium plugin v22.5 (Yoast SEO v22.5) - https://yoast.com/wordpress/plugins/seo/ -->
	<title>Pozez JCC of Northern Virginia | Jewish Community Center</title>
	<meta name="description" content="The Pozez JCC of Northern Virginia builds Jewish connection, community, and peoplehood through meaningful programs, classes and events." />
	<link rel="canonical" href="https://thej.org/" />
	<meta property="og:locale" content="en_US" />
	<meta property="og:type" content="website" />
	<meta property="og:title" content="Home Page" />
	<meta property="og:description" content="The Pozez JCC of Northern Virginia builds Jewish connection, community, and peoplehood through meaningful programs, classes and events." />
	<meta property="og:url" content="https://thej.org/" />
	<meta property="og:site_name" content="Pozez JCC" />
	<meta property="article:modified_time" content="2024-05-01T14:31:17+00:00" />
	<meta property="og:image" content="http://thej.org/wp-content/uploads/2024/04/IMG_4161_DXO-scaled.jpg" />
	<meta property="og:image:width" content="2560" />
	<meta property="og:image:height" content="1706" />
	<meta property="og:image:type" content="image/jpeg" />
	<meta name="twitter:card" content="summary_large_image" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://thej.org/","url":"https://thej.org/","name":"Pozez JCC of Northern Virginia | Jewish Community Center","isPartOf":{"@id":"http://thej.org/#website"},"datePublished":"2023-12-02T12:46:07+00:00","dateModified":"2024-05-01T14:31:17+00:00","description":"The Pozez JCC of Northern Virginia builds Jewish connection, community, and peoplehood through meaningful programs, classes and events.","breadcrumb":{"@id":"https://thej.org/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://thej.org/"]}]},{"@type":"BreadcrumbList","@id":"https://thej.org/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"http://thej.org/#website","url":"http://thej.org/","name":"Pozez JCC","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http://thej.org/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}</script>
	<!-- / Yoast SEO Premium plugin. -->


<link rel='dns-prefetch' href='//cdn.jsdelivr.net' />
<link rel='dns-prefetch' href='//cdnjs.cloudflare.com' />
<link rel="alternate" type="application/rss+xml" title="Pozez JCC &raquo; Feed" href="http://thej.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="Pozez JCC &raquo; Comments Feed" href="http://thej.org/comments/feed/" />
<link rel="alternate" type="text/calendar" title="Pozez JCC &raquo; iCal Feed" href="http://thej.org/events/?ical=1" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/thej.org\/wp-includes\/js\/wp-emoji.js?ver=6.5.2","twemoji":"http:\/\/thej.org\/wp-includes\/js\/twemoji.js?ver=6.5.2"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

/**
 * Emoji Settings as exported in PHP via _print_emoji_detection_script().
 * @typedef WPEmojiSettings
 * @type {object}
 * @property {?object} source
 * @property {?string} source.concatemoji
 * @property {?string} source.twemoji
 * @property {?string} source.wpemoji
 * @property {?boolean} DOMReady
 * @property {?Function} readyCallback
 */

/**
 * Support tests.
 * @typedef SupportTests
 * @type {object}
 * @property {?boolean} flag
 * @property {?boolean} emoji
 */

/**
 * IIFE to detect emoji support and load Twemoji if needed.
 *
 * @param {Window} window
 * @param {Document} document
 * @param {WPEmojiSettings} settings
 */
( function wpEmojiLoader( window, document, settings ) {
	if ( typeof Promise === 'undefined' ) {
		return;
	}

	var sessionStorageKey = 'wpEmojiSettingsSupports';
	var tests = [ 'flag', 'emoji' ];

	/**
	 * Checks whether the browser supports offloading to a Worker.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {boolean}
	 */
	function supportsWorkerOffloading() {
		return (
			typeof Worker !== 'undefined' &&
			typeof OffscreenCanvas !== 'undefined' &&
			typeof URL !== 'undefined' &&
			URL.createObjectURL &&
			typeof Blob !== 'undefined'
		);
	}

	/**
	 * @typedef SessionSupportTests
	 * @type {object}
	 * @property {number} timestamp
	 * @property {SupportTests} supportTests
	 */

	/**
	 * Get support tests from session.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
	 */
	function getSessionSupportTests() {
		try {
			/** @type {SessionSupportTests} */
			var item = JSON.parse(
				sessionStorage.getItem( sessionStorageKey )
			);
			if (
				typeof item === 'object' &&
				typeof item.timestamp === 'number' &&
				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
				typeof item.supportTests === 'object'
			) {
				return item.supportTests;
			}
		} catch ( e ) {}
		return null;
	}

	/**
	 * Persist the supports in session storage.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {SupportTests} supportTests Support tests.
	 */
	function setSessionSupportTests( supportTests ) {
		try {
			/** @type {SessionSupportTests} */
			var item = {
				supportTests: supportTests,
				timestamp: new Date().valueOf()
			};

			sessionStorage.setItem(
				sessionStorageKey,
				JSON.stringify( item )
			);
		} catch ( e ) {}
	}

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} set1 Set of Emoji to test.
	 * @param {string} set2 Set of Emoji to test.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( context, set1, set2 ) {
		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set1, 0, 0 );
		var rendered1 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		// Cleanup from previous test.
		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
		context.fillText( set2, 0, 0 );
		var rendered2 = new Uint32Array(
			context.getImageData(
				0,
				0,
				context.canvas.width,
				context.canvas.height
			).data
		);

		return rendered1.every( function ( rendered2Data, index ) {
			return rendered2Data === rendered2[ index ];
		} );
	}

	/**
	 * Determines if the browser properly renders Emoji that Twemoji can supplement.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {CanvasRenderingContext2D} context 2D Context.
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
		var isIdentical;

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. Added in Unicode 13.
				 *
				 * 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(
					context,
					'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
					'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
				);

				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(
					context,
					'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
					'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
				);

				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 a 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(
					context,
					// as the flag sequence
					'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
					// with each code point separated by a zero-width space
					'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Four and twenty blackbirds baked in a pie.
				 *
				 * To test for Emoji 15.0 support, try to render a new emoji: Blackbird.
				 *
				 * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
				 *
				 * 0x1F426 (\uD83D\uDC26) == Bird
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0x2B1B == Large Black Square
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					context,
					'\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence
					'\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Checks emoji support tests.
	 *
	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
	 * scope. Everything must be passed by parameters.
	 *
	 * @since 6.3.0
	 *
	 * @private
	 *
	 * @param {string[]} tests Tests.
	 * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
	 *
	 * @return {SupportTests} Support tests.
	 */
	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
		var canvas;
		if (
			typeof WorkerGlobalScope !== 'undefined' &&
			self instanceof WorkerGlobalScope
		) {
			canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
		} else {
			canvas = document.createElement( 'canvas' );
		}

		var context = canvas.getContext( '2d', { willReadFrequently: true } );

		/*
		 * 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';

		var supports = {};
		tests.forEach( function ( test ) {
			supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
		} );
		return supports;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {string} src The url where the script is located.
	 *
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );
		script.src = src;
		script.defer = true;
		document.head.appendChild( script );
	}

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

	// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
	var domReadyPromise = new Promise( function ( resolve ) {
		document.addEventListener( 'DOMContentLoaded', resolve, {
			once: true
		} );
	} );

	// Obtain the emoji support from the browser, asynchronously when possible.
	new Promise( function ( resolve ) {
		var supportTests = getSessionSupportTests();
		if ( supportTests ) {
			resolve( supportTests );
			return;
		}

		if ( supportsWorkerOffloading() ) {
			try {
				// Note that the functions are being passed as arguments due to minification.
				var workerScript =
					'postMessage(' +
					testEmojiSupports.toString() +
					'(' +
					[
						JSON.stringify( tests ),
						browserSupportsEmoji.toString(),
						emojiSetsRenderIdentically.toString()
					].join( ',' ) +
					'));';
				var blob = new Blob( [ workerScript ], {
					type: 'text/javascript'
				} );
				var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
				worker.onmessage = function ( event ) {
					supportTests = event.data;
					setSessionSupportTests( supportTests );
					worker.terminate();
					resolve( supportTests );
				};
				return;
			} catch ( e ) {}
		}

		supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
		setSessionSupportTests( supportTests );
		resolve( supportTests );
	} )
		// Once the browser emoji support has been obtained from the session, finalize the settings.
		.then( function ( supportTests ) {
			/*
			 * Tests the browser support for flag emojis and other emojis, and adjusts the
			 * support settings accordingly.
			 */
			for ( var test in supportTests ) {
				settings.supports[ test ] = supportTests[ test ];

				settings.supports.everything =
					settings.supports.everything && settings.supports[ test ];

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

			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;
			};
		} )
		.then( function () {
			return domReadyPromise;
		} )
		.then( function () {
			// When the browser can not render everything we need to load a polyfill.
			if ( ! settings.supports.everything ) {
				settings.readyCallback();

				var 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>
<link rel='stylesheet' id='tribe-events-pro-mini-calendar-block-styles-css' href='http://thej.org/wp-content/plugins/events-calendar-pro/src/resources/css/tribe-events-pro-mini-calendar-block.min.css?ver=6.2.4' media='all' />
<style id='wp-emoji-styles-inline-css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='http://thej.org/wp-includes/css/dist/block-library/style.css?ver=6.5.2' media='all' />
<style id='classic-theme-styles-inline-css'>
/**
 * These rules are needed for backwards compatibility.
 * They should match the button element rules in the base theme.json file.
 */
.wp-block-button__link {
	color: #ffffff;
	background-color: #32373c;
	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */

	/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
	box-shadow: none;
	text-decoration: none;

	/* The extra 2px are added to size solids the same as the outline versions.*/
	padding: calc(0.667em + 2px) calc(1.333em + 2px);

	font-size: 1.125em;
}

.wp-block-file__button {
	background: #32373c;
	color: #ffffff;
	text-decoration: none;
}

</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='bold-timeline-css' href='http://thej.org/wp-content/plugins/bold-timeline-lite/style.css?ver=6.5.2' media='all' />
<link rel='stylesheet' id='pozez-swiper-style-css' href='https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css?ver=1.0.0' media='all' />
<link rel='stylesheet' id='pozez-style-css' href='http://thej.org/wp-content/themes/pozez/css/main.css?ver=2.4' media='all' />
<script src="http://thej.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script src="http://thej.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script src="http://thej.org/wp-content/plugins/bold-timeline-lite/bold-builder-light/bt-bb-light.js?ver=6.5.2" id="bt-bb-light-js"></script>
<script src="http://thej.org/wp-content/plugins/bold-timeline-lite/assets/js/bold-timeline.js?ver=6.5.2" id="bold-timeline-js"></script>
<link rel="https://api.w.org/" href="http://thej.org/wp-json/" /><link rel="alternate" type="application/json" href="http://thej.org/wp-json/wp/v2/pages/8" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://thej.org/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.5.2" />
<link rel='shortlink' href='http://thej.org/' />
<link rel="alternate" type="application/json+oembed" href="http://thej.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fthej.org%2F" />
<link rel="alternate" type="text/xml+oembed" href="http://thej.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fthej.org%2F&#038;format=xml" />
				<script>
				// Select the node that will be observed for mutations
				const targetNode = document.documentElement;

				// Options for the observer (which mutations to observe)
				const config = { attributes: false, childList: true, subtree: false };
				
				var bold_timeline_item_button_done = false;
				var css_override_item_done = false;
				var css_override_group_done = false;
				var css_override_container_done = false;

				// Callback function to execute when mutations are observed
				const callback = function( mutationsList, observer ) {
					var i;
					for ( i = 0; i < mutationsList.length; i++ ) {
						if ( mutationsList[ i ].type === 'childList' ) {
							if ( typeof jQuery !== 'undefined' && jQuery( '.bold_timeline_item_button' ).length > 0 && ! bold_timeline_item_button_done ) {
								bold_timeline_item_button_done = true;
								jQuery( '.bold_timeline_item_button' ).each( function() {
									var css_override = jQuery( this ).data( 'css-override' );
									if ( css_override != '' ) {
										var id = jQuery( this ).attr( 'id' );
										css_override = css_override.replace( /(\.bold_timeline_item_button)([\.\{\s])/g, '.bold_timeline_item_button#' + id + '$2' );
										var head = document.getElementsByTagName( 'head' )[0];
										var style = document.createElement( 'style' );
										style.appendChild( document.createTextNode( css_override ) );
										head.appendChild( style );
									}
								});
							}
							if ( typeof jQuery !== 'undefined' && jQuery( '.bold_timeline_item' ).length > 0 && ! css_override_item_done ) {
								css_override_item_done = true;
								jQuery( '.bold_timeline_item' ).each( function() {
									var css_override = jQuery( this ).data( 'css-override' );
									if ( css_override != '' ) {
										var id = jQuery( this ).attr( 'id' );
										css_override = css_override.replace( /(\.bold_timeline_item)([\.\{\s])/g, '.bold_timeline_item#' + id + '$2' );
										var head = document.getElementsByTagName( 'head' )[0];
										var style = document.createElement( 'style' );
										style.appendChild( document.createTextNode( css_override ) );
										head.appendChild( style );
									}
								});
							}
							if ( typeof jQuery !== 'undefined' && jQuery( '.bold_timeline_group' ).length > 0 && ! css_override_group_done ) {
								css_override_group_done = true;
								jQuery( '.bold_timeline_group' ).each( function() {
									var css_override = jQuery( this ).data( 'css-override' );
									if ( css_override != '' ) {
										var id = jQuery( this ).attr( 'id' );
										css_override = css_override.replace( /(\.bold_timeline_group)([\.\{\s])/g, '.bold_timeline_group#' + id + '$2' );
										var head = document.getElementsByTagName( 'head' )[0];
										var style = document.createElement( 'style' );
										style.appendChild( document.createTextNode( css_override ) );
										head.appendChild( style );
									}
								});
							}
							if ( typeof jQuery !== 'undefined' && jQuery( '.bold_timeline_container' ).length > 0 && ! css_override_container_done ) {
								css_override_container_done = true;
								jQuery( '.bold_timeline_container' ).each( function() {
									var css_override = jQuery( this ).data( 'css-override' );
									if ( css_override != '' ) {
										var id = jQuery( this ).attr( 'id' );
										css_override = css_override.replace( /(\.bold_timeline_container)([\.\{\s])/g, '#' + id + '$2' );
										var head = document.getElementsByTagName( 'head' )[0];
										var style = document.createElement( 'style' );
										style.appendChild( document.createTextNode( css_override ) );
										head.appendChild( style );
									}
								});
							}
						}
					}
				};

				// Create an observer instance linked to the callback function
				const observer = new MutationObserver(callback);

				// Start observing the target node for configured mutations
				observer.observe(targetNode, config);

				// Later, you can stop observing
				document.addEventListener( 'DOMContentLoaded', function() { observer.disconnect(); }, false );

				</script>
			<meta name="tec-api-version" content="v1"><meta name="tec-api-origin" content="http://thej.org"><link rel="alternate" href="http://thej.org/wp-json/tribe/events/v1/" />
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<!-- GTM Container placement set to footer -->
<script data-cfasync="false" data-pagespeed-no-defer type="text/javascript">
	var dataLayer_content = {"pagePostType":"frontpage","pagePostType2":"single-page","pagePostAuthor":"theAdmin"};
	dataLayer.push( dataLayer_content );
</script>
<script data-cfasync="false">
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PCCXJMR');
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<script>function yydev_tagmanager_js_lazy_load() {var YY_analytics_TAG = document.createElement('script');YY_analytics_TAG.src = 'https://www.googletagmanager.com/gtag/js?id=G-Z5H7386M0C';var first_analytics_ScriptTag = document.getElementsByTagName('script')[0];first_analytics_ScriptTag.parentNode.insertBefore(YY_analytics_TAG, first_analytics_ScriptTag);window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-Z5H7386M0C');yydev_tagmanager_stop = 1;}var yydev_tagmanager_stop = 0;document.addEventListener('DOMContentLoaded', function(event) {setTimeout(run_yydev_tagmanager_lazy_load, 5000);});function run_yydev_tagmanager_lazy_load() {if(yydev_tagmanager_stop == 0) {yydev_tagmanager_js_lazy_load();}}window.addEventListener('scroll', function(e) {if( this.scrollY > 10 && yydev_tagmanager_stop == 0) {yydev_tagmanager_js_lazy_load();}});document.addEventListener('DOMContentLoaded', function() {document.body.addEventListener('mouseup', yydev_run_event_lazyload);document.body.addEventListener('mousedown', yydev_run_event_lazyload);document.body.addEventListener('click', yydev_run_event_lazyload);document.body.addEventListener('mousemove', yydev_run_event_lazyload);document.body.addEventListener('keypress', yydev_run_event_lazyload);});function yydev_run_event_lazyload() {if (typeof yydev_tagmanager_stop !== 'undefined' && yydev_tagmanager_stop === 0) {yydev_tagmanager_js_lazy_load();}}</script><!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PSW1MY7HB4');
</script>
</head>

<body class="home page-template-default page page-id-8 tribe-no-js">
<div id="page" class="page">
		<div class="page__header-wr">
					<header class="header bg--color_transparent" id="header">
					<div class="container--big header__container">
				<div class="header__top-line">
											<div class="header__logo">
											<picture class="header__logo-pic">
														<img src="http://thej.org/wp-content/uploads/2023/12/logo.svg" alt="" class="header__logo-img">
						</picture>
											</div>
										<!-- End logo -->
					<div class="header__general-nav">
						<div class="menu-general-header-menu-container"><ul id="menu-general-header-menu" class="menu"><li id="menu-item-51" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-51"><a href="http://thej.org/calendar/">Programs, Classes &amp; Events</a></li>
<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="http://thej.org/partners/">Partner</a></li>
<li id="menu-item-50" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-50"><a href="http://thej.org/blog/">News &amp; Blog</a></li>
<li id="menu-item-48" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-48"><a href="http://thej.org/about/">About</a>
<ul class="sub-menu">
	<li id="menu-item-5863" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5863"><a href="http://thej.org/about/">Mission</a></li>
	<li id="menu-item-3971" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3971"><a href="http://thej.org/about/our-history/">Our History</a></li>
	<li id="menu-item-4613" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4613"><a href="http://thej.org/about/our-team/">Our Team</a></li>
	<li id="menu-item-4614" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4614"><a href="http://thej.org/about/our-board/">Our Board</a></li>
	<li id="menu-item-4615" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4615"><a href="http://thej.org/about/awards-honorees/">Awards &#038; Honorees</a></li>
	<li id="menu-item-5665" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5665"><a href="http://thej.org/about/job-opportunities/">Careers</a></li>
	<li id="menu-item-5666" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5666"><a href="http://thej.org/about/hours-holiday-schedule/">Hours &#038; Holidays</a></li>
	<li id="menu-item-5664" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5664"><a href="http://thej.org/inclement-weather-guidelines/">Inclement Weather</a></li>
	<li id="menu-item-4616" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4616"><a href="http://thej.org/about/facilities-rentals/">Rentals</a></li>
</ul>
</li>
</ul></div>					</div>
					<!-- /.header__general-nav -->

					<div class="header__buttons">
						<a href="https://thej.org/membership/" class="header__btn btn btn--style_white-border">Membership</a>
						<a href="https://thej.org/calendar" class="header__btn btn btn--style_white-border">Calendar</a>
						<a href="?campaign=548048" class="header__donate-btn header__btn btn btn--style_accent-bg">Donate</a>
						<div class="header__donate-submenu">
							<div class="menu-donate-button-menu-container"><ul id="menu-donate-button-menu" class="menu"><li id="menu-item-4703" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4703"><a href="https://www.classy.org/give/528465/#!/donation/checkout">Donate Now</a></li>
<li id="menu-item-5381" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5381"><a href="http://thej.org/ways-to-give/">Ways to Give</a></li>
<li id="menu-item-5721" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5721"><a href="http://thej.org/chai-society/">Chai Society</a></li>
<li id="menu-item-4709" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4709"><a href="http://thej.org/leave-a-legacy/">Leave a Legacy</a></li>
</ul></div>							<!-- < var_dump(get_field('donate_button_sub-menu', 'option')) ?> -->
						</div>
					</div>
					<!-- /.header__buttons -->
					<button class="btn header__mobile-btn" type="button"><span class="header__mobile-btn_line"></span><span class="header__mobile-btn_line"></span><span class="header__mobile-btn_line"></span></button>
				</div>
				<!-- /.header__top-line -->
				<div class="mobile-menu">
						<div class="mobile-menu__general-nav">
							<div class="menu-general-header-menu-container"><ul id="menu-general-header-menu-1" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-51"><a href="http://thej.org/calendar/">Programs, Classes &amp; Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="http://thej.org/partners/">Partner</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-50"><a href="http://thej.org/blog/">News &amp; Blog</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-48"><a href="http://thej.org/about/">About</a>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5863"><a href="http://thej.org/about/">Mission</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3971"><a href="http://thej.org/about/our-history/">Our History</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4613"><a href="http://thej.org/about/our-team/">Our Team</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4614"><a href="http://thej.org/about/our-board/">Our Board</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4615"><a href="http://thej.org/about/awards-honorees/">Awards &#038; Honorees</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5665"><a href="http://thej.org/about/job-opportunities/">Careers</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5666"><a href="http://thej.org/about/hours-holiday-schedule/">Hours &#038; Holidays</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5664"><a href="http://thej.org/inclement-weather-guidelines/">Inclement Weather</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4616"><a href="http://thej.org/about/facilities-rentals/">Rentals</a></li>
</ul>
</li>
</ul></div>						</div>
						<div class="mobile-menu__mega-menu mob-mega-menu">
							<ul>
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Fitness & Rec</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Fitness & Recreation</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/fitness-rec/">Overview</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fitness-recreation__trashed/facilities/">Facilities</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fitness-rec/aquatics-center-pool/">Aquatics Center / Pool</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fitness-rec/fitness-classes/">Fitness Classes</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fitness-rec/personal-training/">Personal Training</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/recreational-sports">Recreational Sports</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fitness-rec/recreational-games/">Recreational Games</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fitness-rec/pickleball">Pickleball</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://thej.org/fitness-rec/make-a-fitness-class-reservation/">Book a Fitness Class</a>
																</li>
																															<li>
																	<a href="https://thej.org/fitness-rec/make-a-fitness-or-rec-reservation/">Reserve a Swim Lane</a>
																</li>
																															<li>
																	<a href="https://thej.org/fitness-rec/pickleball/">Sign up for Pickleball</a>
																</li>
																															<li>
																	<a href="https://lp.constantcontactpages.com/su/bOTdYOz/subscribetoJFIT">Sign up for the J-Fit Newsletter</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Adult Learning & Culture</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Adult Learning & Culture</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/learning-culture/">Overview</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/learning-culture/adult-learning-institute/">Adult Enrichment</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/learning-culture/israel/">Israel</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/learning-culture/fine-arts/">The Arts</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/jewish-playwriting-contest/">Jewish Playwriting Contest</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/learning-culture/reelabilities-film-festival/">ReelAbilities Film Festival</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/learning-culture/special-interest-groups/">Affinity Groups</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/learning-culture/overnight-cultural-arts-trips/">Overnight Cultural Arts Trips</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://thej.org/events/list/?tribe_eventcategory%5B0%5D=6">Find a Program</a>
																</li>
																															<li>
																	<a href="https://thej.org/learning-culture/israel/stand-with-israel/">Stand With Israel</a>
																</li>
																															<li>
																	<a href="https://thej.org/volunteer-ride-program/">Be an NV Rides Volunteer Driver</a>
																</li>
																															<li>
																	<a href="https://thej.org/fitness-rec/recreational-games/">Recreational Games</a>
																</li>
																															<li>
																	<a href="https://thej.org/community-resources/jewish-holidays/the-yoms-2024/">The Yoms (The Days)</a>
																</li>
																															<li>
																	<a href="https://thej.org/learning-culture/fine-arts/jxj-2024/">JxJ Film Festival</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Inclusion & Disabilities</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Inclusion & Disabilities Services</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/inclusion-disabilities-services/">Overview</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/social-skills-classes/">Social Skills Classes</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/inclusion-disabilities-services/social-clubs/">Social Clubs</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/adapted-sports/">Adapted Sports</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/family-youth/camp-kesher/">Camp Kesher</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://thej.org/inclusion-resources/">Inclusion Resources</a>
																</li>
																															<li>
																	<a href="https://thej.org/learning-culture/reelabilities-film-festival/">ReelAbilities Film Festival</a>
																</li>
																															<li>
																	<a href="https://thej.org/events/list/?tribe_eventcategory%5B0%5D=12">Find an Event</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Family & Youth</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Family & Youth</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/family-youth/">Overview</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/growing-jewish-families/">Growing Jewish Families (GJF)</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/family-youth/early-childhood-learning-center/">Early Childhood Learning Center (ECLC)</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/family-youth/chai-5-after-school-program/">Chai 5 After-School Program</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/family-youth/camp-achva/">Camp Achva (Grades K-10)</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/camp-katan/">Camp Katan (3-5 years)</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/family-youth/camp-kesher/">Camp Kesher (Neurodiverse Teens & Adults)</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/family-youth/horizon-day-camp/">Horizon Day Camp (3.5-16 years)</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://thej.org/growing-jewish-families/#gjfsignup">GJF Sign-up</a>
																</li>
																															<li>
																	<a href="https://thej.org/family-youth/early-childhood-learning-center/preschool-fairfax/">Fairfax ECLC Registration</a>
																</li>
																															<li>
																	<a href="https://thej.org/family-youth/early-childhood-learning-center/preschool-alexandria-2/">Alexandria ECLC Registration</a>
																</li>
																															<li>
																	<a href="https://thej.org/family-youth/camp-achva/#campachvareg">Camp Achva Registration</a>
																</li>
																															<li>
																	<a href="https://thej.org/camp-katan/">Camp Katan Registration</a>
																</li>
																															<li>
																	<a href="https://thej.org/family-youth/camp-kesher/">Camp Kesher Registration</a>
																</li>
																															<li>
																	<a href="https://horizondaycamp.org/metrodc/program/about-our-camp/">Horizon Day Camp Registration</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Community Resources</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Community Resources</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/community-resources/">Overview</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/community-resources/jewish-holidays/">Jewish Holidays</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/community-resources/shabbat/">Shabbat</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/community-resources/community-events/">Community Events</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/community-resources/interfaith-resources/">Interfaith Resources</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/inclusion-resources">Inclusion & Disabilities Resources</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://thej.org/shabbat-connection/">Host a Shabbat Connections Meal</a>
																</li>
																															<li>
																	<a href="https://thej.org/partners/community-partners-2/">NoVa Jewish Community Map</a>
																</li>
																															<li>
																	<a href="https://www.myjewishlearning.com/">MyJewishLearning.com</a>
																</li>
																															<li>
																	<a href="https://www.shalomdc.org/">The Jewish Federation of Greater Washington</a>
																</li>
																															<li>
																	<a href="https://thej.org/community-resources/jewish-holidays/the-yoms-2024/">The Yoms (The Days)</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Our Impact</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Our Impact</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/community-of-action/">Community of Action</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/jewish-camping-investing-in-the-next-generation/">Jewish Camping</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/building-connections-to-israel/">Connecting to Israel</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/supporting-families-battling-pediatric-cancer/">Families Battling Pediatric Cancer</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/fostering-community-for-families-with-young-children/">Engaging Families with Young Children</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://www.classy.org/give/528465/#!/donation/checkout">Make a Donation</a>
																</li>
																															<li>
																	<a href="https://thej.org/about/impact-report/">FY2024 Impact Infographic</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
																	<div class="mob-mega-menu-item">
										<div class="mob-mega-menu-item__parent">
											<span>Volunteer</span>
											<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
												<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
											</svg>
										</div>

										<div class="mob-mega-menu-item__submenu-block">
											<div class="mob-mega-menu-item__submenu-img-first-col-wr">			
												<div class="mob-mega-menu-item__first-submenu_wr">
													<div class="mob-mega-menu-item__menu-wr">
														<div class="mob-mega-menu-item__menu-wr">
															<h4 class="mob-mega-menu-item__menu-title">Volunteer Opportunities</h4>
															<ul class="mob-mega-menu-item__menu-list">
																																	<li>
																		<a href="https://thej.org/volunteer/">Volunteer Overview</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/volunteer-ride-program/">Volunteer to Drive Seniors</a>
																	</li>
																																	<li>
																		<a href="https://thej.org/volunteer/horizon-on-wheels/">Horizon on Wheels</a>
																	</li>
																															</ul>
														</div>
												
													</div>
													<!-- /.mob-mega-menu-item__menu-wr -->
												</div>
												<!-- /.mob-mega-menu-item__first-submenu_wr -->
											</div>
											<!-- /.mob-mega-menu-item__submenu-img-first-col-wr -->
											<div class="mob-mega-menu-item__second-submenu_wr">
												<div class="mob-mega-menu-item__menu-wr">
													<div class="mob-mega-menu-item__menu-wr">
														<h4 class="mob-mega-menu-item__menu-title">Quick Links</h4>
														<ul class="mob-mega-menu-item__menu-list">
																															<li>
																	<a href="https://thej.org/volunteer/horizonwalks/">HorizonWALKS</a>
																</li>
																													</ul>
													</div>
												</div>
												<!-- /.mob-mega-menu-item__menu-wr -->
											</div>
											<!-- /.mob-mega-menu-item__first-submenu_wr -->
										</div>
										<!-- /.mob-mega-menu-item__submenu-block -->
									</div>
									<!-- /.big-menu__item -->
															</ul>
						</div>
						<!-- /.mobile-menu__mega-nemu -->
						<div class="mobile-menu__btns">
							<a href="https://thej.org/membership/" class="btn mobile-menu__btn btn--style_accent-bg">Membership</a>
							<a href="https://thej.org/calendar" class="btn mobile-menu__btn btn--style_accent-bg">Calendar</a>
							<div class="mobile-menu__donate-submenu">
							<div class="menu-donate-button-menu-container"><ul id="menu-donate-button-menu-1" class="menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4703"><a href="https://www.classy.org/give/528465/#!/donation/checkout">Donate Now</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5381"><a href="http://thej.org/ways-to-give/">Ways to Give</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5721"><a href="http://thej.org/chai-society/">Chai Society</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4709"><a href="http://thej.org/leave-a-legacy/">Leave a Legacy</a></li>
</ul></div>							</div>
							<a href="?campaign=548048" class="btn mobile-menu__btn mobile-menu__donate-btn btn--style_accent-border">Donate</a>
						</div>
				</div>
				<div class="header__bottom-line">
					<ul>
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Fitness & Rec</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/01/Blue-and-White-Light-Professional-Static-Short-Infographic-General-News-Instagram-Post-4.png" alt="" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Fitness & Recreation</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/fitness-rec/" target="">Overview</a>
															</li>
																													<li>
																<a href="https://thej.org/fitness-recreation__trashed/facilities/" target="">Facilities</a>
															</li>
																													<li>
																<a href="https://thej.org/fitness-rec/aquatics-center-pool/" target="">Aquatics Center / Pool</a>
															</li>
																													<li>
																<a href="https://thej.org/fitness-rec/fitness-classes/" target="">Fitness Classes</a>
															</li>
																													<li>
																<a href="https://thej.org/fitness-rec/personal-training/" target="">Personal Training</a>
															</li>
																													<li>
																<a href="https://thej.org/recreational-sports" target="">Recreational Sports</a>
															</li>
																													<li>
																<a href="https://thej.org/fitness-rec/recreational-games/" target="">Recreational Games</a>
															</li>
																													<li>
																<a href="https://thej.org/fitness-rec/pickleball" target="">Pickleball</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://thej.org/fitness-rec/make-a-fitness-class-reservation/" target="">Book a Fitness Class</a>
														</li>
																											<li>
															<a href="https://thej.org/fitness-rec/make-a-fitness-or-rec-reservation/" target="">Reserve a Swim Lane</a>
														</li>
																											<li>
															<a href="https://thej.org/fitness-rec/pickleball/" target="">Sign up for Pickleball</a>
														</li>
																											<li>
															<a href="https://lp.constantcontactpages.com/su/bOTdYOz/subscribetoJFIT" target="_blank">Sign up for the J-Fit Newsletter</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Adult Learning & Culture</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/03/J-Mens-Group-e1711045194481.jpg" alt="" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Adult Learning & Culture</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/learning-culture/" target="">Overview</a>
															</li>
																													<li>
																<a href="https://thej.org/learning-culture/adult-learning-institute/" target="">Adult Enrichment</a>
															</li>
																													<li>
																<a href="https://thej.org/learning-culture/israel/" target="">Israel</a>
															</li>
																													<li>
																<a href="https://thej.org/learning-culture/fine-arts/" target="">The Arts</a>
															</li>
																													<li>
																<a href="https://thej.org/jewish-playwriting-contest/" target="">Jewish Playwriting Contest</a>
															</li>
																													<li>
																<a href="https://thej.org/learning-culture/reelabilities-film-festival/" target="">ReelAbilities Film Festival</a>
															</li>
																													<li>
																<a href="https://thej.org/learning-culture/special-interest-groups/" target="">Affinity Groups</a>
															</li>
																													<li>
																<a href="https://thej.org/learning-culture/overnight-cultural-arts-trips/" target="">Overnight Cultural Arts Trips</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://thej.org/events/list/?tribe_eventcategory%5B0%5D=6" target="">Find a Program</a>
														</li>
																											<li>
															<a href="https://thej.org/learning-culture/israel/stand-with-israel/" target="">Stand With Israel</a>
														</li>
																											<li>
															<a href="https://thej.org/volunteer-ride-program/" target="">Be an NV Rides Volunteer Driver</a>
														</li>
																											<li>
															<a href="https://thej.org/fitness-rec/recreational-games/" target="">Recreational Games</a>
														</li>
																											<li>
															<a href="https://thej.org/community-resources/jewish-holidays/the-yoms-2024/" target="">The Yoms (The Days)</a>
														</li>
																											<li>
															<a href="https://thej.org/learning-culture/fine-arts/jxj-2024/" target="">JxJ Film Festival</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Inclusion & Disabilities</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/03/Jenny-Holden-e1711044974588.jpeg" alt="" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Inclusion & Disabilities Services</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/inclusion-disabilities-services/" target="">Overview</a>
															</li>
																													<li>
																<a href="https://thej.org/social-skills-classes/" target="">Social Skills Classes</a>
															</li>
																													<li>
																<a href="https://thej.org/inclusion-disabilities-services/social-clubs/" target="">Social Clubs</a>
															</li>
																													<li>
																<a href="https://thej.org/adapted-sports/" target="">Adapted Sports</a>
															</li>
																													<li>
																<a href="https://thej.org/family-youth/camp-kesher/" target="">Camp Kesher</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://thej.org/inclusion-resources/" target="">Inclusion Resources</a>
														</li>
																											<li>
															<a href="https://thej.org/learning-culture/reelabilities-film-festival/" target="">ReelAbilities Film Festival</a>
														</li>
																											<li>
															<a href="https://thej.org/events/list/?tribe_eventcategory%5B0%5D=12" target="">Find an Event</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Family & Youth</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/01/alexandria-bobbing-for-apples-stockpack-unsplash-scaled.jpg" alt="Alexandria bobbing for apples" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Family & Youth</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/family-youth/" target="">Overview</a>
															</li>
																													<li>
																<a href="https://thej.org/growing-jewish-families/" target="">Growing Jewish Families (GJF)</a>
															</li>
																													<li>
																<a href="https://thej.org/family-youth/early-childhood-learning-center/" target="">Early Childhood Learning Center (ECLC)</a>
															</li>
																													<li>
																<a href="https://thej.org/family-youth/chai-5-after-school-program/" target="">Chai 5 After-School Program</a>
															</li>
																													<li>
																<a href="https://thej.org/family-youth/camp-achva/" target="">Camp Achva (Grades K-10)</a>
															</li>
																													<li>
																<a href="https://thej.org/camp-katan/" target="">Camp Katan (3-5 years)</a>
															</li>
																													<li>
																<a href="https://thej.org/family-youth/camp-kesher/" target="">Camp Kesher (Neurodiverse Teens & Adults)</a>
															</li>
																													<li>
																<a href="https://thej.org/family-youth/horizon-day-camp/" target="">Horizon Day Camp (3.5-16 years)</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://thej.org/growing-jewish-families/#gjfsignup" target="">GJF Sign-up</a>
														</li>
																											<li>
															<a href="https://thej.org/family-youth/early-childhood-learning-center/preschool-fairfax/" target="">Fairfax ECLC Registration</a>
														</li>
																											<li>
															<a href="https://thej.org/family-youth/early-childhood-learning-center/preschool-alexandria-2/" target="">Alexandria ECLC Registration</a>
														</li>
																											<li>
															<a href="https://thej.org/family-youth/camp-achva/#campachvareg" target="">Camp Achva Registration</a>
														</li>
																											<li>
															<a href="https://thej.org/camp-katan/" target="">Camp Katan Registration</a>
														</li>
																											<li>
															<a href="https://thej.org/family-youth/camp-kesher/" target="">Camp Kesher Registration</a>
														</li>
																											<li>
															<a href="https://horizondaycamp.org/metrodc/program/about-our-camp/" target="_blank">Horizon Day Camp Registration</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Community Resources</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/03/close-up-photo-of-candle-holder-stockpack-pexels-scaled.jpg" alt="Close up photo of candle holder" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Community Resources</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/community-resources/" target="">Overview</a>
															</li>
																													<li>
																<a href="https://thej.org/community-resources/jewish-holidays/" target="">Jewish Holidays</a>
															</li>
																													<li>
																<a href="https://thej.org/community-resources/shabbat/" target="">Shabbat</a>
															</li>
																													<li>
																<a href="https://thej.org/community-resources/community-events/" target="">Community Events</a>
															</li>
																													<li>
																<a href="https://thej.org/community-resources/interfaith-resources/" target="">Interfaith Resources</a>
															</li>
																													<li>
																<a href="https://thej.org/inclusion-resources" target="">Inclusion & Disabilities Resources</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://thej.org/shabbat-connection/" target="_blank">Host a Shabbat Connections Meal</a>
														</li>
																											<li>
															<a href="https://thej.org/partners/community-partners-2/" target="_blank">NoVa Jewish Community Map</a>
														</li>
																											<li>
															<a href="https://www.myjewishlearning.com/" target="_blank">MyJewishLearning.com</a>
														</li>
																											<li>
															<a href="https://www.shalomdc.org/" target="_blank">The Jewish Federation of Greater Washington</a>
														</li>
																											<li>
															<a href="https://thej.org/community-resources/jewish-holidays/the-yoms-2024/" target="">The Yoms (The Days)</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Our Impact</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/03/Vigil-Israeli-Flag-scaled-e1711044261177.jpg" alt="" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Our Impact</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/community-of-action/" target="">Community of Action</a>
															</li>
																													<li>
																<a href="https://thej.org/jewish-camping-investing-in-the-next-generation/" target="">Jewish Camping</a>
															</li>
																													<li>
																<a href="https://thej.org/building-connections-to-israel/" target="">Connecting to Israel</a>
															</li>
																													<li>
																<a href="https://thej.org/supporting-families-battling-pediatric-cancer/" target="">Families Battling Pediatric Cancer</a>
															</li>
																													<li>
																<a href="https://thej.org/fostering-community-for-families-with-young-children/" target="">Engaging Families with Young Children</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://www.classy.org/give/528465/#!/donation/checkout" target="">Make a Donation</a>
														</li>
																											<li>
															<a href="https://thej.org/about/impact-report/" target="">FY2024 Impact Infographic</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
													<div class="header__big-menu-item big-menu-item">
								<div class="big-menu-item__parent">
									<span>Volunteer</span>
									<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg">
										<path d="M4.99501 4.99094C4.9295 4.99167 4.86454 4.97995 4.80432 4.95655C4.74411 4.93315 4.68996 4.89858 4.64536 4.85507L0.14985 0.778985C-0.0499501 0.597826 -0.0499501 0.317029 0.14985 0.13587C0.34965 -0.0452898 0.659341 -0.0452898 0.859141 0.13587L5.005 3.89493L9.14086 0.144928C9.34066 -0.0362319 9.65035 -0.0362319 9.85015 0.144928C10.05 0.326087 10.05 0.606884 9.85015 0.788043L5.35465 4.86413C5.25475 4.95471 5.12488 5 5.005 5L4.99501 4.99094Z" fill="white"/>
									</svg>
								</div>

								<div class="big-menu-item__submenu-block">
									<div class="big-menu-item__submenu-img-first-col-wr">
										<div class="big-menu-item__img-wr">
											<picture class="big-menu-item__pic">
												<img src="http://thej.org/wp-content/uploads/2024/03/NV-Rides_2022.jpg" alt="" class="big-menu-item__img" loading="lazy">
											</picture>
										</div>
	
										<div class="big-menu-item__first-submenu_wr">
											<div class="big-menu-item__menu-wr">
												<div class="big-menu-item__menu-wr">
													<h4 class="big-menu-item__menu-title">Volunteer Opportunities</h4>
													<ul class="big-menu-item__menu-list">
																													<li>
																<a href="https://thej.org/volunteer/" target="">Volunteer Overview</a>
															</li>
																													<li>
																<a href="https://thej.org/volunteer-ride-program/" target="">Volunteer to Drive Seniors</a>
															</li>
																													<li>
																<a href="https://thej.org/volunteer/horizon-on-wheels/" target="">Horizon on Wheels</a>
															</li>
																											</ul>
												</div>
										
											</div>
											<!-- /.big-menu-item__menu-wr -->
										</div>
										<!-- /.big-menu-item__first-submenu_wr -->
									</div>
									<!-- /.big-menu-item__submenu-img-first-col-wr -->
									<div class="big-menu-item__second-submenu_wr">
										<div class="big-menu-item__menu-wr">
											<div class="big-menu-item__menu-wr">
												<h4 class="big-menu-item__menu-title">Quick Links</h4>
												<ul class="big-menu-item__menu-list">
																											<li>
															<a href="https://thej.org/volunteer/horizonwalks/" target="">HorizonWALKS</a>
														</li>
																									</ul>
											</div>
										</div>
										<!-- /.big-menu-item__menu-wr -->
									</div>
									<!-- /.big-menu-item__first-submenu_wr -->
								</div>
								<!-- /.big-menu-item__submenu-block -->
							</div>
							<!-- /.big-menu__item -->
											</ul>
					<!-- < wp_nav_menu(array(
						'menu' => 'Bottom Header Menu'
					)); ?> -->
				</div>
				<!-- /.header__bottom-line -->
			</div>
			<!-- /.container--big header__container -->
		</header>
		<!-- /#header.header -->
	</div>
	<!-- /.page__header-wr -->
	
	<main class="main"><section class="hero ">
            <div class="hero__bg-wr--type_video">
            <div class="hero__video-wr">

            <iframe class="hero__video hero__video--desktop" src="https://player.vimeo.com/video/899928198?h=384dc9a50d&autoplay=1&loop=1&title=0&byline=0&portrait=0&controls=0&autopause=0&background=1" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>

            <iframe class="hero__video hero__video--mobile" src="https://player.vimeo.com/video/908709191?h=384dc9a50d&autoplay=1&loop=1&title=0&byline=0&portrait=0&controls=0&autopause=0&background=1" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>

                <div class="hero__video-overlay hero__video-dots"></div>
                <div class="hero__video-overlay hero__video-black"></div>
            </div>
                <script src="https://player.vimeo.com/api/player.js"></script>
        </div>
        <!-- /.hero__bg-wr--type_video -->
    
    <div class="container--big hero__container">
        <div class="hero__content-wr text--color_white">
            <h2 class="hero__title title"><em>Building Community.</em><br />
<em>Enriching Lives.</em></h2>
            <div class="hero__desc">The Pozez JCC of Northern Virginia connects people to people through the heart, mind, body and spirit.</div>
                                        <div class="hero__btn-wr">
                    <a href="https://thej.org/calendar" class="hero__btn btn btn--style_accent-bg" target="">Find a Program</a>
                </div>
                    </div>
        <!-- /.hero__content-wr -->
    </div>
    <!-- /.container--big hero__container -->
</section>
<!-- /.hero -->

<section class="section section--tp_l section--bp_l section--bg-color_light events">
    <div class="container events__container">
        <h2 class="section__title events__section-title text--align_center text--transform_upp">Programs, Classes & Events CALENDAR</h2>

        <div class="events__slider-wr">
            <!-- Slider main container -->
            <div class="swiper events__swiper custom-slider">
                <!-- Additional required wrapper -->
                <div class="swiper-wrapper events__swiper-wrapper">
                                        <!-- < get_post_type($event['post']); ?> -->
                        <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/j-fit-spring-zumbathon-2024/">
                            <div class="event__photo-wr">
                                <picture class="event__photo-pic">
                                <img src="http://thej.org/wp-content/uploads/2024/03/Zumbathon-Flyer-2024-wide-16-9.png" class="event__photo-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.event__photo-wr -->

                            <div class="event__content-wr">
                                <div class="event__heading">
                                    <!-- <div class="event__icon-wr">
                                        <picture class="event__icon-pic">
                                        <img src="< $event['icon']['url'] ?>" alt="< $event['icon']['url'] ?>" class="event__icon-img" loading="lazy">
                                        </picture>
                                    </div> -->
                                    <!-- /.event__icon-wr -->
                                    <h4 class="event__title text--color_accent">J-Fit Spring Zumbathon 2024</h4>
                                </div>
                                <!-- /.event__heading -->
    
                                <div class="event__date-info bg--color_light">
                                                                        <dd>
                                            <abbr class="tribe-events-abbr tribe-events-start-date published dtstart" title="2024-05-05"> May 5, 2024 </abbr>
                                        </dd>

                                        <dd>
                                            <div class="tribe-events-abbr tribe-events-start-time published dtstart" title="2024-05-05">
                                                12:00 pm - 2:00 pm                                                                                            </div>
                                        </dd>

                                                                        <!-- <span class="event__start-date">Aug 6</span> -->
                                    <!-- <span>-</span>
                                    <span class="event__end-date">Dec 10, 2023</span>
                                    <span class="event__time">11:00 AM</span> -->
                                </div>
                                <!-- /.event__date-info -->
    
                                <div class="event__desc text--color_gray">Join us for two hours of high-energy tunes, dancing, and great vibes with friends and family! Registration Deadline: Friday, May 3, 2024 Ages: All ages. Children 12 and under must [&hellip;]</div>
                            </div>
                            <!-- /.event__content-wr -->
                        </a>
                                        <!-- < get_post_type($event['post']); ?> -->
                        <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/new-siamese-mah-jongg-lessons-in-person/">
                            <div class="event__photo-wr">
                                <picture class="event__photo-pic">
                                <img src="http://thej.org/wp-content/uploads/2024/02/mah-jongg2.png" class="event__photo-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.event__photo-wr -->

                            <div class="event__content-wr">
                                <div class="event__heading">
                                    <!-- <div class="event__icon-wr">
                                        <picture class="event__icon-pic">
                                        <img src="< $event['icon']['url'] ?>" alt="< $event['icon']['url'] ?>" class="event__icon-img" loading="lazy">
                                        </picture>
                                    </div> -->
                                    <!-- /.event__icon-wr -->
                                    <h4 class="event__title text--color_accent">New! Siamese Mah Jongg Lessons (In-Person)</h4>
                                </div>
                                <!-- /.event__heading -->
    
                                <div class="event__date-info bg--color_light">
                                                                        <dd>
                                            <abbr class="tribe-events-abbr tribe-events-start-date published dtstart" title="2024-05-06"> May 6, 2024 </abbr>
                                        </dd>

                                        <dd>
                                            <div class="tribe-events-abbr tribe-events-start-time published dtstart" title="2024-05-06">
                                                1:00 pm - 3:00 pm                                                                                            </div>
                                        </dd>

                                                                        <!-- <span class="event__start-date">Aug 6</span> -->
                                    <!-- <span>-</span>
                                    <span class="event__end-date">Dec 10, 2023</span>
                                    <span class="event__time">11:00 AM</span> -->
                                </div>
                                <!-- /.event__date-info -->
    
                                <div class="event__desc text--color_gray">Do you play Mah Jongg and want to learn how to play with two people? Then learning Siamese Mah Jongg, which creatively uses 2 racks, is for you! Janine Rubens [&hellip;]</div>
                            </div>
                            <!-- /.event__content-wr -->
                        </a>
                                        <!-- < get_post_type($event['post']); ?> -->
                        <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/battles-over-the-holocaust-polish-jewish-memory-wars-featuring-dr-zachary-mazur/">
                            <div class="event__photo-wr">
                                <picture class="event__photo-pic">
                                <img src="http://thej.org/wp-content/uploads/2024/04/auschwitz-stockpack-unsplash-scaled.jpg" class="event__photo-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.event__photo-wr -->

                            <div class="event__content-wr">
                                <div class="event__heading">
                                    <!-- <div class="event__icon-wr">
                                        <picture class="event__icon-pic">
                                        <img src="< $event['icon']['url'] ?>" alt="< $event['icon']['url'] ?>" class="event__icon-img" loading="lazy">
                                        </picture>
                                    </div> -->
                                    <!-- /.event__icon-wr -->
                                    <h4 class="event__title text--color_accent">Battles Over the Holocaust: Polish-Jewish Memory Wars, Featuring Dr. Zachary Mazur </h4>
                                </div>
                                <!-- /.event__heading -->
    
                                <div class="event__date-info bg--color_light">
                                                                        <dd>
                                            <abbr class="tribe-events-abbr tribe-events-start-date published dtstart" title="2024-05-06"> May 6, 2024 </abbr>
                                        </dd>

                                        <dd>
                                            <div class="tribe-events-abbr tribe-events-start-time published dtstart" title="2024-05-06">
                                                2:00 pm - 3:00 pm                                                                                            </div>
                                        </dd>

                                                                        <!-- <span class="event__start-date">Aug 6</span> -->
                                    <!-- <span>-</span>
                                    <span class="event__end-date">Dec 10, 2023</span>
                                    <span class="event__time">11:00 AM</span> -->
                                </div>
                                <!-- /.event__date-info -->
    
                                <div class="event__desc text--color_gray">In the aftermath of World War II, Jews and Poles formulated separate histories and memories of their wartime experiences. While Poles claimed that Polish Catholics and Jews suffered equally, in [&hellip;]</div>
                            </div>
                            <!-- /.event__content-wr -->
                        </a>
                                        <!-- < get_post_type($event['post']); ?> -->
                        <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/zochrim-community-commemoration-for-yom-hazikaron/">
                            <div class="event__photo-wr">
                                <picture class="event__photo-pic">
                                <img src="http://thej.org/wp-content/uploads/2024/04/Israeli-flag-Of-Israel-416934808.jpg" class="event__photo-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.event__photo-wr -->

                            <div class="event__content-wr">
                                <div class="event__heading">
                                    <!-- <div class="event__icon-wr">
                                        <picture class="event__icon-pic">
                                        <img src="< $event['icon']['url'] ?>" alt="< $event['icon']['url'] ?>" class="event__icon-img" loading="lazy">
                                        </picture>
                                    </div> -->
                                    <!-- /.event__icon-wr -->
                                    <h4 class="event__title text--color_accent">Zochrim: Community Commemoration for Yom Ha’Zikaron  </h4>
                                </div>
                                <!-- /.event__heading -->
    
                                <div class="event__date-info bg--color_light">
                                                                        <dd>
                                            <abbr class="tribe-events-abbr tribe-events-start-date published dtstart" title="2024-05-16"> May 16, 2024 </abbr>
                                        </dd>

                                        <dd>
                                            <div class="tribe-events-abbr tribe-events-start-time published dtstart" title="2024-05-16">
                                                7:00 pm                                                                                            </div>
                                        </dd>

                                                                        <!-- <span class="event__start-date">Aug 6</span> -->
                                    <!-- <span>-</span>
                                    <span class="event__end-date">Dec 10, 2023</span>
                                    <span class="event__time">11:00 AM</span> -->
                                </div>
                                <!-- /.event__date-info -->
    
                                <div class="event__desc text--color_gray">Yom Ha’Zikaron, Israel’s Memorial Day, carries a heavier weight this year as we grapple with the loss of countless individuals and the pain felt by their families. It&#8217;s a solemn [&hellip;]</div>
                            </div>
                            <!-- /.event__content-wr -->
                        </a>
                                        <!-- < get_post_type($event['post']); ?> -->
                        <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/jimbo-jay-music-humor-and-life-in-the-gaza-envelope/">
                            <div class="event__photo-wr">
                                <picture class="event__photo-pic">
                                <img src="http://thej.org/wp-content/uploads/2024/04/Jimbo-Jay-1.jpg" class="event__photo-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.event__photo-wr -->

                            <div class="event__content-wr">
                                <div class="event__heading">
                                    <!-- <div class="event__icon-wr">
                                        <picture class="event__icon-pic">
                                        <img src="< $event['icon']['url'] ?>" alt="< $event['icon']['url'] ?>" class="event__icon-img" loading="lazy">
                                        </picture>
                                    </div> -->
                                    <!-- /.event__icon-wr -->
                                    <h4 class="event__title text--color_accent">Jimbo Jay: Music, Humor and Life in the Gaza Envelope</h4>
                                </div>
                                <!-- /.event__heading -->
    
                                <div class="event__date-info bg--color_light">
                                                                        <dd>
                                            <abbr class="tribe-events-abbr tribe-events-start-date published dtstart" title="2024-05-18"> May 18, 2024 </abbr>
                                        </dd>

                                        <dd>
                                            <div class="tribe-events-abbr tribe-events-start-time published dtstart" title="2024-05-18">
                                                7:30 pm                                                                                            </div>
                                        </dd>

                                                                        <!-- <span class="event__start-date">Aug 6</span> -->
                                    <!-- <span>-</span>
                                    <span class="event__end-date">Dec 10, 2023</span>
                                    <span class="event__time">11:00 AM</span> -->
                                </div>
                                <!-- /.event__date-info -->
    
                                <div class="event__desc text--color_gray">Doors open, wine, and light appetizers – 7:30pm Performance – 8pm Jimbo Jay, Omar Havron, is a versatile artist, blending rap, singing, and poetry to capture the essence of Israeli [&hellip;]</div>
                            </div>
                            <!-- /.event__content-wr -->
                        </a>
                                        <!-- < get_post_type($event['post']); ?> -->
                        <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/taste-of-israel/">
                            <div class="event__photo-wr">
                                <picture class="event__photo-pic">
                                <img src="http://thej.org/wp-content/uploads/2024/04/taste-of-Israel-2.jpg" class="event__photo-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.event__photo-wr -->

                            <div class="event__content-wr">
                                <div class="event__heading">
                                    <!-- <div class="event__icon-wr">
                                        <picture class="event__icon-pic">
                                        <img src="< $event['icon']['url'] ?>" alt="< $event['icon']['url'] ?>" class="event__icon-img" loading="lazy">
                                        </picture>
                                    </div> -->
                                    <!-- /.event__icon-wr -->
                                    <h4 class="event__title text--color_accent">Taste of Israel</h4>
                                </div>
                                <!-- /.event__heading -->
    
                                <div class="event__date-info bg--color_light">
                                                                        <dd>
                                            <abbr class="tribe-events-abbr tribe-events-start-date published dtstart" title="2024-05-19"> May 19, 2024 </abbr>
                                        </dd>

                                        <dd>
                                            <div class="tribe-events-abbr tribe-events-start-time published dtstart" title="2024-05-19">
                                                11:30 am - 3:30 pm                                                                                            </div>
                                        </dd>

                                                                        <!-- <span class="event__start-date">Aug 6</span> -->
                                    <!-- <span>-</span>
                                    <span class="event__end-date">Dec 10, 2023</span>
                                    <span class="event__time">11:00 AM</span> -->
                                </div>
                                <!-- /.event__date-info -->
    
                                <div class="event__desc text--color_gray">Israel is commemorating 76 years of independence! Join us for a tasty celebration featuring delicious Israeli cuisine and a variety of fun activities. All ages are invited to partake in [&hellip;]</div>
                            </div>
                            <!-- /.event__content-wr -->
                        </a>
                                    </div>
                <!-- If we need pagination -->
                <div class="swiper-pagination custom-slider__pagination"></div>

                <!-- If we need navigation buttons -->
                <button class="swiper-button-prev custom-slider__btn custom-slider__btn--prev">
                    <svg width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg">
                        <path d="M0.0981445 7.7391L8.41178 15.152L9.57568 14.1142L2.42596 7.7391L9.57568 1.36398L8.41178 0.326172L0.0981445 7.7391Z"/>
                    </svg>
                </button>
                <button class="swiper-button-next custom-slider__btn custom-slider__btn--next">
                    <svg width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg">
                        <path d="M9.65173 7.73885L1.3381 15.1518L0.174194 14.114L7.32392 7.73885L0.174194 1.36374L1.3381 0.325928L9.65173 7.73885Z"/>
                    </svg>
                </button>

                <!-- If we need scrollbar -->
                <!-- <div class="swiper-scrollbar"></div> -->
            </div>
        </div>
        <!-- /.events__slider-wr -->

                    <div class="events__btn-wr">
                <a href="/events/" class="events__btn btn btn--style_accent-bg" target="">View Calendar</a>
            </div>
                <!-- /.events__btn-wr -->
    </div>
    <!-- /.container events__container -->
</section>
<!-- /.section section--tp_l section--bp_l events --><section class="section section--tp_m section--bp_m join text--align_center text--color_white">
    <div class="join__bg-wr">
                    <picture class="join__bg-pic">
                <img src="http://thej.org/wp-content/uploads/2024/03/traditional-jewish-matzo-stockpack-pexels-scaled.jpg" alt="Traditional jewish matzo" class="join__bg-img" loading="lazy">
            </picture>
            </div>
    <!-- /.join__bg-wr -->

    <div class="join__container container">
        <h2 class="section__title join__title">Holy Moses! It's a Membership Special!</h2>
        <div class="section__subtitle join__subtitle">Don't Pass-over the Savings</div>
        <div class="join__sm-text">Terms and conditions apply.</div>
        <div class="join__df-text">Receive April FREE and 50% off your May Membership Dues when you join between April 15-30.</div>
                    <div class="join__btn-wr">
                <a href="https://thej.org/membership/" class="join__btn btn btn--style_secondary-accent-bg" target="_blank">Become a Member</a>
            </div>
                <!-- /.join__btn-wr -->
    </div>
    <!-- /.join__container container -->
</section>
<!-- /.section join -->
<section class="full-slider section ">
    <div class="full-slider__slider-wr">
                    <div class="swiper full-slider__swiper full-slider__swiper--slider">
                <div class="swiper-wrapper full-slilder__swiper-wrapper">
                                            <div class="swiper-slide full-slider__slide full-slide ">
                            <div class="full-slide__img-side">
                                <picture class="full-slide__img-pic">
                                    <img src="http://thej.org/wp-content/uploads/2024/01/Skills_instructor-scaled.jpg" alt="" class="full-slide__img-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.full-slide__img-side -->

                            <div class="full-slide__content-side">
                                <div class="full-slide__content-inner">
                                    <div class="full-slide__logo-wr">
                                        <picture class="full-slide__logo-pic">
                                            <img src="http://thej.org/wp-content/uploads/2024/01/J-FIT-LOGO-powered.png" alt="" class="full-slide__logo-img" loading="lazy">
                                        </picture>
                                    </div>
                                    <!-- /.full-slide__logo-wr -->

                                    <div class="full-slide__general-content-wr">
                                        <h4 class="full-slide__uptitle text--color_accent text--transform_upp">Pickleball is the fastest growing sport in America!</h4>
                                        <h3 class="full-slide__title text--transform_upp">Pickleball Beginner's Clinics</h3>
                                        <div class="full-slide__desc text--color_gray">Learn the rules and strategies of Pickleball. You will be able to play games on your own and with a better understanding of the game.</div>
                                                                                    <div class="full-slide__btn-wr">
                                                <a href="https://thej.org/fitness-rec/pickleball" class="full-slide__btn btn btn--style_accent-bg" target="">Learn More</a>
                                            </div>
                                                                                                                            <div class="full-slide__arrow-btns">
                                                <button class="full-slide__arrow-btn full-slide__arrow-btn--prev  full-slide__arrow-btn--no-active">
                                                    <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                        <path d="M0.0981445 7.7391L8.41178 15.152L9.57568 14.1142L2.42596 7.7391L9.57568 1.36398L8.41178 0.326172L0.0981445 7.7391Z" fill="#00ADBA"/>
                                                    </svg>
                                                </button>
                                                <button class="full-slide__arrow-btn full-slide__arrow-btn--next ">
                                                    <svg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                        <path d="M9.47742 7.41292L1.16379 14.8258L-0.00012207 13.788L7.1496 7.41292L-0.00012207 1.03781L1.16379 0L9.47742 7.41292Z" fill="#00ADBA"/>
                                                    </svg>
                                                </button>
                                            </div>
                                                                            </div>
                                    <!-- /.full-slide__general-content-wr -->
                                </div>
                                <!-- /.full-slide__content-inner -->
                            </div>
                            <!-- /.full-slide__content-side -->
                        </div>
                                            <div class="swiper-slide full-slider__slide full-slide ">
                            <div class="full-slide__img-side">
                                <picture class="full-slide__img-pic">
                                    <img src="http://thej.org/wp-content/uploads/2024/02/woman_arm-press-2023-scaled.jpg" alt="" class="full-slide__img-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.full-slide__img-side -->

                            <div class="full-slide__content-side">
                                <div class="full-slide__content-inner">
                                    <div class="full-slide__logo-wr">
                                        <picture class="full-slide__logo-pic">
                                            <img src="http://thej.org/wp-content/uploads/2024/01/J-FIT-LOGO-powered.png" alt="" class="full-slide__logo-img" loading="lazy">
                                        </picture>
                                    </div>
                                    <!-- /.full-slide__logo-wr -->

                                    <div class="full-slide__general-content-wr">
                                        <h4 class="full-slide__uptitle text--color_accent text--transform_upp">Get fit on your terms!</h4>
                                        <h3 class="full-slide__title text--transform_upp">Workout with a Personal Trainer for Wellness Success</h3>
                                        <div class="full-slide__desc text--color_gray">J-Fit's certified personal trainers will help you stay on target with your fitness goals by ensuring you're in the correct form to prevent injury, holding you accountable, and designing variety in your fitness routine. Work with your trainer to determine the best day and time to fit your schedule.</div>
                                                                                    <div class="full-slide__btn-wr">
                                                <a href="https://thej.org/fitness-rec/personal-training/" class="full-slide__btn btn btn--style_accent-bg" target="">Learn More</a>
                                            </div>
                                                                                                                            <div class="full-slide__arrow-btns">
                                                <button class="full-slide__arrow-btn full-slide__arrow-btn--prev ">
                                                    <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                        <path d="M0.0981445 7.7391L8.41178 15.152L9.57568 14.1142L2.42596 7.7391L9.57568 1.36398L8.41178 0.326172L0.0981445 7.7391Z" fill="#00ADBA"/>
                                                    </svg>
                                                </button>
                                                <button class="full-slide__arrow-btn full-slide__arrow-btn--next ">
                                                    <svg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                        <path d="M9.47742 7.41292L1.16379 14.8258L-0.00012207 13.788L7.1496 7.41292L-0.00012207 1.03781L1.16379 0L9.47742 7.41292Z" fill="#00ADBA"/>
                                                    </svg>
                                                </button>
                                            </div>
                                                                            </div>
                                    <!-- /.full-slide__general-content-wr -->
                                </div>
                                <!-- /.full-slide__content-inner -->
                            </div>
                            <!-- /.full-slide__content-side -->
                        </div>
                                            <div class="swiper-slide full-slider__slide full-slide ">
                            <div class="full-slide__img-side">
                                <picture class="full-slide__img-pic">
                                    <img src="http://thej.org/wp-content/uploads/2024/01/Bootcamp_stations-1-scaled.jpg" alt="" class="full-slide__img-img" loading="lazy">
                                </picture>
                            </div>
                            <!-- /.full-slide__img-side -->

                            <div class="full-slide__content-side">
                                <div class="full-slide__content-inner">
                                    <div class="full-slide__logo-wr">
                                        <picture class="full-slide__logo-pic">
                                            <img src="http://thej.org/wp-content/uploads/2024/01/J-FIT-LOGO-powered.png" alt="" class="full-slide__logo-img" loading="lazy">
                                        </picture>
                                    </div>
                                    <!-- /.full-slide__logo-wr -->

                                    <div class="full-slide__general-content-wr">
                                        <h4 class="full-slide__uptitle text--color_accent text--transform_upp">High- and Low-Intensity Workouts to fit your needs.</h4>
                                        <h3 class="full-slide__title text--transform_upp">Group Fitness Classes for All!</h3>
                                        <div class="full-slide__desc text--color_gray">Find motivation and inspiration in a group fitness class! J-Fit offers a variety of high- and low-intensity classes for all fitness levels during the week and specialty Bootcamps throughout the year.</div>
                                                                                    <div class="full-slide__btn-wr">
                                                <a href="https://thej.org/fitness-rec/make-a-fitness-class-reservation/" class="full-slide__btn btn btn--style_accent-bg" target="">Register Today</a>
                                            </div>
                                                                                                                            <div class="full-slide__arrow-btns">
                                                <button class="full-slide__arrow-btn full-slide__arrow-btn--prev ">
                                                    <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                        <path d="M0.0981445 7.7391L8.41178 15.152L9.57568 14.1142L2.42596 7.7391L9.57568 1.36398L8.41178 0.326172L0.0981445 7.7391Z" fill="#00ADBA"/>
                                                    </svg>
                                                </button>
                                                <button class="full-slide__arrow-btn full-slide__arrow-btn--next  full-slide__arrow-btn--no-active">
                                                    <svg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                        <path d="M9.47742 7.41292L1.16379 14.8258L-0.00012207 13.788L7.1496 7.41292L-0.00012207 1.03781L1.16379 0L9.47742 7.41292Z" fill="#00ADBA"/>
                                                    </svg>
                                                </button>
                                            </div>
                                                                            </div>
                                    <!-- /.full-slide__general-content-wr -->
                                </div>
                                <!-- /.full-slide__content-inner -->
                            </div>
                            <!-- /.full-slide__content-side -->
                        </div>
                                    </div>
            </div>
            </div>
    <!-- /.full-slider__slider-wr -->
</section>
<!-- /.full-slider --><section class="section section--tp_l section--bp_l section--bg-color_white events events--type_post-slider">
    <div class="events__bg-wr">
                <picture class="evets__bg-pic">
            <img src="http://thej.org/wp-content/uploads/2023/12/g12.svg" alt="" class="events__bg-img" loading="lazy">
        </picture>
    </div>
    <!-- /.events__bg-wr -->

    <div class="container events__container">
        <h2 class="section__title events__section-title text--align_center text--transform_upp">Stories of Impact</h2>

        <div class="events__slider-wr">
            <!-- Slider main container -->
            <div class="swiper events__swiper custom-slider">
                <!-- Additional required wrapper -->
                <div class="swiper-wrapper events__swiper-wrapper">
                                            <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/building-ramps-not-stairs/">
                                <div class="event__photo-wr">
                                    <picture class="event__photo-pic">
                                        <img src="http://thej.org/wp-content/uploads/2024/03/Lauren-Panozzo-camp2_med.jpg" class="event__photo-img" loading="lazy">
                                    </picture>
                                </div>
                                <!-- /.event__photo-wr -->

                                <div class="event__content-wr">
                                    <h4 class="event__title event__title--size_post text--color_accent text--align_center">Building Ramps… Not Stairs</h4>
                                </div>
                                <!-- /.event__content-wr -->
                        </a>
                                                                    <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/nurturing-tomorrow-upholding-the-rights-of-the-child-through-early-childhood-education/">
                                <div class="event__photo-wr">
                                    <picture class="event__photo-pic">
                                        <img src="http://thej.org/wp-content/uploads/2024/03/Early-Childhood-Education-blog-April-2024-e1711749206639.jpg" class="event__photo-img" loading="lazy">
                                    </picture>
                                </div>
                                <!-- /.event__photo-wr -->

                                <div class="event__content-wr">
                                    <h4 class="event__title event__title--size_post text--color_accent text--align_center">Nurturing Tomorrow: Upholding the Rights of the Child through Early Childhood Education</h4>
                                </div>
                                <!-- /.event__content-wr -->
                        </a>
                                                                    <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/the-day-i-started-wearing-my-mogen-david/">
                                <div class="event__photo-wr">
                                    <picture class="event__photo-pic">
                                        <img src="http://thej.org/wp-content/uploads/2024/03/iStock-2005548462.jpg" class="event__photo-img" loading="lazy">
                                    </picture>
                                </div>
                                <!-- /.event__photo-wr -->

                                <div class="event__content-wr">
                                    <h4 class="event__title event__title--size_post text--color_accent text--align_center">The Day I Started Wearing My Mogen David</h4>
                                </div>
                                <!-- /.event__content-wr -->
                        </a>
                                                                    <a class="swiper-slide custom-slider__slide events__swiper-slide event bg--color_white" href="http://thej.org/not-just-another-trip-to-israel/">
                                <div class="event__photo-wr">
                                    <picture class="event__photo-pic">
                                        <img src="http://thej.org/wp-content/uploads/2024/03/Jeff.Dannick_Shaul_Zohar-2024_sml.jpg" class="event__photo-img" loading="lazy">
                                    </picture>
                                </div>
                                <!-- /.event__photo-wr -->

                                <div class="event__content-wr">
                                    <h4 class="event__title event__title--size_post text--color_accent text--align_center">Not Just Another Trip to Israel</h4>
                                </div>
                                <!-- /.event__content-wr -->
                        </a>
                                                            </div>
                <!-- If we need pagination -->
                <div class="swiper-pagination custom-slider__pagination"></div>

                <!-- If we need navigation buttons -->
                <button class="swiper-button-prev custom-slider__btn custom-slider__btn--prev">
                    <svg width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg">
                        <path d="M0.0981445 7.7391L8.41178 15.152L9.57568 14.1142L2.42596 7.7391L9.57568 1.36398L8.41178 0.326172L0.0981445 7.7391Z"/>
                    </svg>
                </button>
                <button class="swiper-button-next custom-slider__btn custom-slider__btn--next">
                    <svg width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg">
                        <path d="M9.65173 7.73885L1.3381 15.1518L0.174194 14.114L7.32392 7.73885L0.174194 1.36374L1.3381 0.325928L9.65173 7.73885Z"/>
                    </svg>
                </button>

                <!-- If we need scrollbar -->
                <!-- <div class="swiper-scrollbar"></div> -->
            </div>
        </div>
        <!-- /.events__slider-wr -->

                    <div class="events__btn-wr">
                <a href="https://thej.org/blog/" class="events__btn btn btn--style_accent-bg" target="">Read more stories</a>
            </div>
                <!-- /.events__btn-wr -->
    </div>
    <!-- /.container events__container -->
</section>
<!-- /.section section--tp_l section--bp_l events -->
<section class="shortcode-section section section--tp_s section--bp_s">
    <div class="container">
        <p><center><img decoding="async" class="aligncenter wp-image-4864" src="http://thej.org/wp-content/uploads/2024/03/thin-line-black-e1712071788665.jpg" alt="" width="1000" height="5" /><center></center></center><center><br />
<a href="https://www.shalomdc.org/" target="_blank" rel="noopener"><img decoding="async" class="wp-image-4857 aligncenter" src="http://thej.org/wp-content/uploads/2024/03/JFGWLogo-PartnerAgency-dual-tone-RGB-1024x388.png" alt="" width="300" height="114" srcset="http://thej.org/wp-content/uploads/2024/03/JFGWLogo-PartnerAgency-dual-tone-RGB-1024x388.png 1024w, http://thej.org/wp-content/uploads/2024/03/JFGWLogo-PartnerAgency-dual-tone-RGB-300x114.png 300w, http://thej.org/wp-content/uploads/2024/03/JFGWLogo-PartnerAgency-dual-tone-RGB-768x291.png 768w, http://thej.org/wp-content/uploads/2024/03/JFGWLogo-PartnerAgency-dual-tone-RGB-1536x582.png 1536w, http://thej.org/wp-content/uploads/2024/03/JFGWLogo-PartnerAgency-dual-tone-RGB.png 1677w" sizes="(max-width: 300px) 100vw, 300px" /></a><center></center></center></p>
    </div>
</section>
	</main>
	<!-- /.main -->

	<footer class="footer">
		<div class="container--big footer__container">
		<button type="button" class="btn btn__scroll"><span></span></button>
			<div class="footer__top-line">
									<div class="footer__logo">
									<picture class="footer__logo-pic">
												<img src="http://thej.org/wp-content/uploads/2023/12/logo.svg" alt="" class="footer__logo-img">
					</picture>
									</div>
								<!-- End logo -->

				<div class="footer__nav-wr">
					<div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-173"><a href="http://thej.org/about/">About Us</a></li>
<li id="menu-item-5523" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5523"><a href="http://thej.org/calendar/">Calendar</a></li>
<li id="menu-item-171" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-171"><a href="http://thej.org/blog/">News &amp; Blog</a></li>
<li id="menu-item-172" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-172"><a href="http://thej.org/partners/">Partner</a></li>
<li id="menu-item-4979" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4979"><a href="http://thej.org/about/facilities-rentals/">Rentals</a></li>
<li id="menu-item-6138" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6138"><a href="http://thej.org/contact/">Contact Us</a></li>
</ul></div>				</div>
				<!-- /.footer__nav-wr -->

				<div class="footer__social-wr">
					<div class="footer__social social">
													<a class="social__item" href="https://www.facebook.com/PozezJCC/" target="_blank">
								<picture class="social__item-pic">
									<img src="http://thej.org/wp-content/uploads/2023/12/facebook.svg" alt="" class="social__item-img" loading="lazy">
								</picture>
							</a>
													<a class="social__item" href="https://www.instagram.com/pozezjcc/" target="_blank">
								<picture class="social__item-pic">
									<img src="http://thej.org/wp-content/uploads/2023/12/instagram.svg" alt="" class="social__item-img" loading="lazy">
								</picture>
							</a>
													<a class="social__item" href="https://www.linkedin.com/company/pozezjcc" target="_blank">
								<picture class="social__item-pic">
									<img src="http://thej.org/wp-content/uploads/2023/12/linkedin.svg" alt="" class="social__item-img" loading="lazy">
								</picture>
							</a>
													<a class="social__item" href="https://www.youtube.com/@JCCofNoVA/featured" target="_blank">
								<picture class="social__item-pic">
									<img src="http://thej.org/wp-content/uploads/2023/12/youtube.svg" alt="" class="social__item-img" loading="lazy">
								</picture>
							</a>
											</div>
				</div>
				<!-- /.footer__social-wr -->
			</div>
			<!-- /.footer__top-line -->

			<div class="footer__bottom-line">
								<a href="/" class="footer__copy-left-link" target="">Privacy Policy</a>

				<div class="footer__copyright"><center>© 2024 Pozez Jewish Community Center of Northern Virginia<br><br>8900 Little River Turnpike, Fairfax, VA 22031<br><br> Phone: 703.323.0880 • Fax: 703.323.1993 <br><br>Pozez Jewish Community Center of Northern Virginia is a 501(c)(3) not-for-profit organization. EIN: 54-1145849<br><p></center></p></div>

								<a href="http://thej.org/wp-content/uploads/2024/04/2023_JCCNV-INC-Form-990-5.31.2023-FINAL.pdf" class="footer__copy-right-link" target="">Form 990</a>
			</div>
			<!-- /.footer__bottom-line -->
		</div>
		<!-- /.container--big footer__container -->
	</footer>
	<!-- /.footer -->
</div>
<!-- End Page -->

		<script>
		( function ( body ) {
			'use strict';
			body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
		} )( document.body );
		</script>
		
<!-- GTM Container placement set to footer -->
<!-- Google Tag Manager (noscript) -->
				<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PCCXJMR" height="0" width="0" style="display:none;visibility:hidden" aria-hidden="true"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --><script> /* <![CDATA[ */var tribe_l10n_datatables = {"aria":{"sort_ascending":": activate to sort column ascending","sort_descending":": activate to sort column descending"},"length_menu":"Show _MENU_ entries","empty_table":"No data available in table","info":"Showing _START_ to _END_ of _TOTAL_ entries","info_empty":"Showing 0 to 0 of 0 entries","info_filtered":"(filtered from _MAX_ total entries)","zero_records":"No matching records found","search":"Search:","all_selected_text":"All items on this page were selected. ","select_all_link":"Select all pages","clear_selection":"Clear Selection.","pagination":{"all":"All","next":"Next","previous":"Previous"},"select":{"rows":{"0":"","_":": Selected %d rows","1":": Selected 1 row"}},"datepicker":{"dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesMin":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Prev","currentText":"Today","closeText":"Done","today":"Today","clear":"Clear"}};/* ]]> */ </script><style id='core-block-supports-inline-css'>
/**
 * Core styles: block-supports
 */

</style>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js?ver=1.0.0" id="pozez-swiper-script-js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.7/axios.min.js?ver=1.0.0" id="axios-script-js"></script>
<script src="http://thej.org/wp-content/themes/pozez/js/scripts.js?ver=2.4" id="pozez-script-js"></script>

<!-- Begin Constant Contact Active Forms -->
<script> var _ctct_m = "fe1753b4894b6fc65a8a7b79bbbfff07"; </script>
<script id="signupScript" src="//static.ctctcdn.com/js/signup-form-widget/current/signup-form-widget.min.js" async defer></script>
<!-- End Constant Contact Active Forms -->
</body>
</html>
