Help
RSS
API
Feed
Maltego
Contact
Domain > sandspringseducationfoundation.com
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-06-29
67.214.101.92
(
ClassC
)
2025-10-22
104.18.185.50
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Wed, 22 Oct 2025 13:11:56 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveCache-Control: max-age3600Expires: Wed, 22 Oct 2025 14:11:56 GMTLocation: https://sandspringseducationfoundation.com/Server: cloudflareCF-RAY: 99293e4f1d305913-PDXalt-svc: h3:443; ma86400 html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>cloudflare/center>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Wed, 22 Oct 2025 13:11:56 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveCF-RAY: 99293e4f7c03ff05-PDXvary: Accept-Encodinglink: https://sandspringseducationfoundation.com/wp-json/>; relhttps://api.w.org/, https://sandspringseducationfoundation.com/wp-json/wp/v2/pages/40>; relalternate; titleJSON; typeapplication/json, https://sandspringseducationfoundation.com/>; relshortlinkCache-Control: public, max-age0, s-maxage2592000Last-Modified: Tue, 14 Oct 2025 19:28:41 GMTCF-Cache-Status: HITAge: 394519Server: cloudflarealt-svc: h3:443; ma86400 !doctype html>html langen-US>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1> link relprofile hrefhttps://gmpg.org/xfn/11> title>Sand Springs Education Foundation 501(c)(3) Nonprofit/title>meta namerobots contentmax-image-preview:large /> style>img:is(sizesauto i, sizes^auto, i) { contain-intrinsic-size: 3000px 1500px }/style> link relalternate typeapplication/rss+xml titleSand Springs Education Foundation » Feed hrefhttps://sandspringseducationfoundation.com/feed/ />link relalternate typeapplication/rss+xml titleSand Springs Education Foundation » Comments Feed hrefhttps://sandspringseducationfoundation.com/comments/feed/ />script>window._wpemojiSettings {baseUrl:https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/,ext:.png,svgUrl:https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/,svgExt:.svg,source:{wpemoji:https:\/\/sandspringseducationfoundation.com\/wp-includes\/js\/wp-emoji.js?ver6.8.3,twemoji:https:\/\/sandspringseducationfoundation.com\/wp-includes\/js\/twemoji.js?ver6.8.3}};/** * @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 is used to determine if the browser is rendering an emoji with multiple data points * correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji * in the incorrect form, using a zero-width space. If the two sets render the same, then the browser * does not support the emoji correctly. * * 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 ; } ); } /** * Checks if the center point of a single emoji is empty. * * This is used to determine if the browser is rendering an emoji with a single data point * correctly. The center point of an incorrectly rendered emoji will be empty. A correctly * rendered emoji will have a non-zero value at the center point. * * 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.8.2 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} emoji Emoji to test. * * @return {boolean} True if the center point is empty. */ function emojiRendersEmptyCenterPoint( context, emoji ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( emoji, 0, 0 ); // Test if the center point (16, 16) is empty (0,0,0,0). var centerPoint context.getImageData(16, 16, 1, 1); for ( var i 0; i centerPoint.data.length; i++ ) { if ( centerPoint.data i ! 0 ) { // Stop checking the moment its known not to be empty. return false; } } return true; } /** * 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. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { 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 doesnt 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 Sark 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 doesnt render it correctly (C + Q). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDDE8\uD83C\uDDF6, // as the sequence of two code points \uD83C\uDDE8\u200B\uD83C\uDDF6 // 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 doesnt 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: /* * Does Emoji 16.0 cause the browser to go splat? * * To test for Emoji 16.0 support, try to render a new emoji: Splatter. * * The splatter emoji is a single code point emoji. Testing for browser support * required testing the center point of the emoji to see if it is empty. * * 0xD83E 0xDEDF (\uD83E\uDEDF) 🫟 Splatter. * * When updating this test, please ensure that the emoji is either a single code point * or switch to using the emojiSetsRenderIdentically function and testing with a zero-width * joiner vs a zero-width space. */ var notSupported emojiRendersEmptyCenterPoint( context, \uD83E\uDEDF ); return ! notSupported; } 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. * @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) { 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 doesnt 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, emojiRendersEmptyCenterPoint ); } ); 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(), emojiRendersEmptyCenterPoint.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, emojiRendersEmptyCenterPoint ); 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>style idwp-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>style idglobal-styles-inline-css>:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--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--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--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);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.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;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.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;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}/style>link relstylesheet idhello-elementor-css hrefhttps://sandspringseducationfoundation.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver3.4.4 mediaall />link relstylesheet idhello-elementor-theme-style-css hrefhttps://sandspringseducationfoundation.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver3.4.4 mediaall />link relstylesheet idhello-elementor-header-footer-css hrefhttps://sandspringseducationfoundation.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver3.4.4 mediaall />link relstylesheet idelementor-frontend-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/frontend.css?ver3.32.4 mediaall />link relstylesheet idelementor-post-10-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/css/post-10.css?ver1759285943 mediaall />link relstylesheet ide-motion-fx-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/modules/motion-fx.css?ver3.28.0 mediaall />link relstylesheet idwidget-image-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver3.32.4 mediaall />link relstylesheet idwidget-nav-menu-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver3.28.0 mediaall />link relstylesheet ide-sticky-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/modules/sticky.css?ver3.28.0 mediaall />link relstylesheet idwidget-toggle-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/widget-toggle.min.css?ver3.32.4 mediaall />link relstylesheet idwidget-social-icons-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver3.32.4 mediaall />link relstylesheet ide-apple-webkit-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver3.32.4 mediaall />link relstylesheet idwidget-heading-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver3.32.4 mediaall />link relstylesheet idwidget-search-form-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/widget-search-form.min.css?ver3.28.0 mediaall />link relstylesheet idwidget-form-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/widget-form.min.css?ver3.28.0 mediaall />link relstylesheet ide-animation-slideInDown-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.css?ver3.32.4 mediaall />link relstylesheet ide-popup-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver3.28.0 mediaall />link relstylesheet ide-animation-fadeIn-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.css?ver3.32.4 mediaall />link relstylesheet idwidget-video-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/widget-video.min.css?ver3.32.4 mediaall />link relstylesheet idwidget-call-to-action-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/widget-call-to-action.min.css?ver3.28.0 mediaall />link relstylesheet ide-transitions-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/conditionals/transitions.min.css?ver3.28.0 mediaall />link relstylesheet idwidget-posts-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css?ver3.28.0 mediaall />link relstylesheet idswiper-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css?ver8.4.5 mediaall />link relstylesheet ide-swiper-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css?ver3.32.4 mediaall />link relstylesheet idwidget-image-carousel-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css?ver3.32.4 mediaall />link relstylesheet idelementor-post-40-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/css/post-40.css?ver1759285943 mediaall />link relstylesheet idelementor-post-31-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/css/post-31.css?ver1759285943 mediaall />link relstylesheet idelementor-post-26-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/css/post-26.css?ver1759285944 mediaall />link relstylesheet idelementor-post-287-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/css/post-287.css?ver1759285944 mediaall />link relstylesheet ideael-general-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver6.3.3 mediaall />link relstylesheet idelementor-gf-local-montserrat-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/google-fonts/css/montserrat.css?ver1742229019 mediaall />link relstylesheet idelementor-gf-local-dmsans-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/google-fonts/css/dmsans.css?ver1742229020 mediaall />link relstylesheet idelementor-gf-local-poppins-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/google-fonts/css/poppins.css?ver1742229021 mediaall />link relstylesheet idelementor-gf-local-intertight-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/google-fonts/css/intertight.css?ver1742229024 mediaall />link relstylesheet idelementor-gf-local-inter-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/google-fonts/css/inter.css?ver1742316635 mediaall />script srchttps://sandspringseducationfoundation.com/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script srchttps://sandspringseducationfoundation.com/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>link relhttps://api.w.org/ hrefhttps://sandspringseducationfoundation.com/wp-json/ />link relalternate titleJSON typeapplication/json hrefhttps://sandspringseducationfoundation.com/wp-json/wp/v2/pages/40 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://sandspringseducationfoundation.com/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.8.3 />link relshortlink hrefhttps://sandspringseducationfoundation.com/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://sandspringseducationfoundation.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fsandspringseducationfoundation.com%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://sandspringseducationfoundation.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fsandspringseducationfoundation.com%2F&formatxml />meta namegenerator contentElementor 3.32.4; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap>!-- SEO meta tags powered by SmartCrawl https://wpmudev.com/project/smartcrawl-wordpress-seo/ -->link relcanonical hrefhttps://sandspringseducationfoundation.com/ />meta namedescription contentThe Sand Springs Education Foundation serves as a private partner of the Sand Springs Public Schools, providing grants to support teachers and students. />script typeapplication/ld+json>{@context:https:\/\/schema.org,@graph:{@type:Organization,@id:https:\/\/sandspringseducationfoundation.com\/#schema-publishing-organization,url:https:\/\/sandspringseducationfoundation.com,name:Sand Springs Education Foundation,description:},{@type:WebSite,@id:https:\/\/sandspringseducationfoundation.com\/#schema-website,url:https:\/\/sandspringseducationfoundation.com,name:Sand Springs Education Foundation,encoding:UTF-8,potentialAction:{@type:SearchAction,target:https:\/\/sandspringseducationfoundation.com\/search\/{search_term_string}\/,query-input:required namesearch_term_string}},{@type:BreadcrumbList,@id:https:\/\/sandspringseducationfoundation.com\/#breadcrumb,itemListElement:{@type:ListItem,position:1,name:Home}},{@type:Person,@id:https:\/\/sandspringseducationfoundation.com\/author\/ssef\/#schema-author,name:SSEF,url:https:\/\/sandspringseducationfoundation.com\/author\/ssef\/},{@type:WebPage,@id:https:\/\/sandspringseducationfoundation.com\/#schema-webpage,isPartOf:{@id:https:\/\/sandspringseducationfoundation.com\/#schema-website},publisher:{@id:https:\/\/sandspringseducationfoundation.com\/#schema-publishing-organization},url:https:\/\/sandspringseducationfoundation.com\/},{@type:Article,mainEntityOfPage:{@id:https:\/\/sandspringseducationfoundation.com\/#schema-webpage},author:{@id:https:\/\/sandspringseducationfoundation.com\/author\/ssef\/#schema-author},publisher:{@id:https:\/\/sandspringseducationfoundation.com\/#schema-publishing-organization},dateModified:2025-08-07T21:02:21,datePublished:2024-04-18T14:20:27,headline:Sand Springs Education Foundation 501(c)(3) Nonprofit,description:The Sand Springs Education Foundation serves as a private partner of the Sand Springs Public Schools, providing grants to support teachers and students.,name:Home}}/script>meta propertyog:type contentwebsite />meta propertyog:url contenthttps://sandspringseducationfoundation.com/ />meta propertyog:title contentSand Springs Education Foundation 501(c)(3) Nonprofit />meta propertyog:description contentThe Sand Springs Education Foundation serves as a private partner of the Sand Springs Public Schools, providing grants to support teachers and students. />meta propertyog:image contenthttps://sandspringseducationfoundation.com/wp-content/uploads/2024/10/2024-Sand-Springs-Education-Foundation-logo.png />meta propertyog:image:width content997 />meta propertyog:image:height content225 />meta nametwitter:card contentsummary_large_image />meta nametwitter:title contentSand Springs Education Foundation 501(c)(3) Nonprofit />meta nametwitter:description contentThe Sand Springs Education Foundation serves as a private partner of the Sand Springs Public Schools, providing grants to support teachers and students. />meta nametwitter:image contenthttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Untitled-design-2.png />!-- /SEO --> style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } /style> link relicon hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/SSEF-Favicon-150x150.png sizes32x32 />link relicon hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/SSEF-Favicon-300x300.png sizes192x192 />link relapple-touch-icon hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/SSEF-Favicon-300x300.png />meta namemsapplication-TileImage contenthttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/SSEF-Favicon-300x300.png />/head>body classhome wp-singular page-template-default page page-id-40 wp-custom-logo wp-embed-responsive wp-theme-hello-elementor hello-elementor-default elementor-default elementor-kit-10 elementor-page elementor-page-40>a classskip-link screen-reader-text href#content>Skip to content/a> header data-elementor-typeheader data-elementor-id31 classelementor elementor-31 elementor-location-header data-elementor-post-typeelementor_library> header classelementor-element elementor-element-55ab1b9d elementor-hidden-mobile elementor-hidden-tablet e-flex e-con-boxed e-con e-parent data-id55ab1b9d data-element_typecontainer data-settings{"background_background":"classic","sticky":"top","sticky_on":"desktop","tablet","mobile","sticky_offset":0,"sticky_effects_offset":0,"sticky_anchor_link_offset":0}> div classe-con-inner> div classelementor-element elementor-element-55b957a e-con-full e-flex e-con e-child data-id55b957a data-element_typecontainer> /div> div classelementor-element elementor-element-55f12a32 e-con-full e-flex e-con e-child data-id55f12a32 data-element_typecontainer> div classelementor-element elementor-element-bcc2794 elementor-widget__width-initial elementor-widget elementor-widget-image data-idbcc2794 data-element_typewidget data-settings{"motion_fx_motion_fx_scrolling":"yes","motion_fx_devices":"desktop","tablet","mobile"} data-widget_typeimage.default> div classelementor-widget-container> a href/> img fetchpriorityhigh width800 height187 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/SSEF-Logo-New-02-1024x239.png classattachment-large size-large wp-image-2775 altSand Springs Education Foundation New Logo /> /a> /div> /div> div classelementor-element elementor-element-7d3cc1a elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu data-id7d3cc1a data-element_typewidget data-settings{"layout":"horizontal","submenu_icon":{"value":"<svg class\"e-font-icon-svg e-fas-caret-down\" viewBox\"0 0 320 512\" xmlns\"http:\/\/www.w3.org\/2000\/svg\"><path d\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"><\/path><\/svg>","library":"fa-solid"},"toggle":"burger"} data-widget_typenav-menu.default> div classelementor-widget-container> nav aria-labelMenu classelementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade> ul idmenu-1-7d3cc1a classelementor-nav-menu>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item menu-item-80>a hrefhttps://sandspringseducationfoundation.com/ aria-currentpage classelementor-item elementor-item-active>Home/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-79>a hrefhttps://sandspringseducationfoundation.com/about-us/ classelementor-item>About Us/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-441>a hrefhttps://sandspringseducationfoundation.com/support/ classelementor-item>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1209>a hrefhttps://sandspringseducationfoundation.com/grant-stories/ classelementor-item>Grant Stories/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1031>a hrefhttps://sandspringseducationfoundation.com/educator-resources-2/ classelementor-item>Educator Resources/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-87>a hrefhttps://sandspringseducationfoundation.com/contact-us/ classelementor-item>Contact/a>/li>/ul> /nav> div classelementor-menu-toggle rolebutton tabindex0 aria-labelMenu Toggle aria-expandedfalse> svg aria-hiddentrue rolepresentation classelementor-menu-toggle__icon--open e-font-icon-svg e-eicon-menu-bar viewBox0 0 1000 1000 xmlnshttp://www.w3.org/2000/svg>path dM104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z>/path>/svg>svg aria-hiddentrue rolepresentation classelementor-menu-toggle__icon--close e-font-icon-svg e-eicon-close viewBox0 0 1000 1000 xmlnshttp://www.w3.org/2000/svg>path dM742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z>/path>/svg> /div> nav classelementor-nav-menu--dropdown elementor-nav-menu__container aria-hiddentrue> ul idmenu-2-7d3cc1a classelementor-nav-menu>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item menu-item-80>a hrefhttps://sandspringseducationfoundation.com/ aria-currentpage classelementor-item elementor-item-active tabindex-1>Home/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-79>a hrefhttps://sandspringseducationfoundation.com/about-us/ classelementor-item tabindex-1>About Us/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-441>a hrefhttps://sandspringseducationfoundation.com/support/ classelementor-item tabindex-1>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1209>a hrefhttps://sandspringseducationfoundation.com/grant-stories/ classelementor-item tabindex-1>Grant Stories/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1031>a hrefhttps://sandspringseducationfoundation.com/educator-resources-2/ classelementor-item tabindex-1>Educator Resources/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-87>a hrefhttps://sandspringseducationfoundation.com/contact-us/ classelementor-item tabindex-1>Contact/a>/li>/ul> /nav> /div> /div> /div> div classelementor-element elementor-element-cc515e0 e-con-full e-flex e-con e-child data-idcc515e0 data-element_typecontainer> div classelementor-element elementor-element-06396e8 elementor-widget__width-initial search-button elementor-align-left elementor-widget elementor-widget-button data-id06396e8 data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm href#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjI4NyIsInRvZ2dsZSI6dHJ1ZX0%3D idbtn1> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fas-bars viewBox0 0 448 512 xmlnshttp://www.w3.org/2000/svg>path dM16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z>/path>/svg> /span> span classelementor-button-text> / Search/span> /span> /a> /div> /div> /div> div classelementor-element elementor-element-e9c357d elementor-align-justify elementor-widget__width-initial news-button elementor-widget elementor-widget-button data-ide9c357d data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://www.google.com/search?qsand+springs+education+foundation&sca_esv3220abbc16c1298d&sca_upv1&hlen&tbmnws&sxsrfADLYWIJkEyPHiIbGtJudPXhU5WXeg_TFHg:1723042525886&tbas0&sourcelnt&saX&ved2ahUKEwiDzcDNkeOHAxUBle4BHcEpOdwQpwV6BAgCEBM&biw1920&bih911&dpr1 target_blank> span classelementor-button-content-wrapper> span classelementor-button-text>News/span> /span> /a> /div> /div> /div> div classelementor-element elementor-element-e20c96d elementor-align-justify elementor-widget__width-initial news-button elementor-widget elementor-widget-button data-ide20c96d data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm href#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjMxMDQiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D target_blank> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fab-cc-paypal viewBox0 0 576 512 xmlnshttp://www.w3.org/2000/svg>path dM186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z>/path>/svg> /span> span classelementor-button-text>Donate/span> /span> /a> /div> /div> /div> div classelementor-element elementor-element-819b957 elementor-align-justify elementor-widget__width-initial news-button elementor-widget elementor-widget-button data-id819b957 data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://hof.sandspringseducationfoundation.com/2025 target_blank> span classelementor-button-content-wrapper> span classelementor-button-text>Hall of Fame/span> /span> /a> /div> /div> /div> /div> /div> /header> div classelementor-element elementor-element-f3d012b elementor-hidden-mobile elementor-hidden-tablet e-flex e-con-boxed e-con e-parent data-idf3d012b data-element_typecontainer data-settings{"background_background":"gradient","sticky_offset":185,"sticky":"top","sticky_on":"desktop","tablet","mobile","sticky_effects_offset":0,"sticky_anchor_link_offset":0}> div classe-con-inner> div classelementor-element elementor-element-9dca760 elementor-widget elementor-widget-html data-id9dca760 data-element_typewidget data-widget_typehtml.default> div classelementor-widget-container> style> .elementor-editor-active .hidden { display:block; } .hidden{ display:none; } .shown{ display: block !important; } /style>script> // replace with your button IDs var btn1 document.getElementById(btn1); //Click Event Handlers for buttons btn1.onclick function(event){ event.preventDefault(); toggleDivs(sect1); }; //function to hide or show function toggleDivs(s){ //reset document.getElementById(sect1).classList.remove(shown); document.getElementById(s).classList.add(shown); } /script> /div> /div> /div> /div> div classelementor-element elementor-element-c6b057c elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent data-idc6b057c data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-71da73b elementor-widget elementor-widget-toggle data-id71da73b data-element_typewidget data-widget_typetoggle.default> div classelementor-widget-container> div classelementor-toggle> div classelementor-toggle-item> div idelementor-tab-title-1191 classelementor-tab-title data-tab1 rolebutton aria-controlselementor-tab-content-1191 aria-expandedfalse> span classelementor-toggle-icon elementor-toggle-icon-left aria-hiddentrue> span classelementor-toggle-icon-closed>svg classe-font-icon-svg e-fas-caret-right viewBox0 0 192 512 xmlnshttp://www.w3.org/2000/svg>path dM0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z>/path>/svg>/span> span classelementor-toggle-icon-opened>svg classelementor-toggle-icon-opened e-font-icon-svg e-fas-caret-up viewBox0 0 320 512 xmlnshttp://www.w3.org/2000/svg>path dM288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z>/path>/svg>/span> /span> a classelementor-toggle-title tabindex0>Toggle #1/a> /div> div idelementor-tab-content-1191 classelementor-tab-content elementor-clearfix data-tab1 roleregion aria-labelledbyelementor-tab-title-1191>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo./div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-a1e22ea elementor-hidden-desktop e-flex e-con-boxed e-con e-parent data-ida1e22ea data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-643d8dd elementor-widget-mobile__width-initial elementor-widget elementor-widget-image data-id643d8dd data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://sandspringseducationfoundation.com/> img fetchpriorityhigh width800 height187 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/SSEF-Logo-New-02-1024x239.png classattachment-large size-large wp-image-2775 altSand Springs Education Foundation New Logo /> /a> /div> /div> div classelementor-element elementor-element-5847d91 elementor-nav-menu__align-end elementor-nav-menu--stretch elementor-nav-menu__text-align-center elementor-widget-mobile__width-initial elementor-widget-tablet__width-initial elementor-nav-menu--dropdown-tablet elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu data-id5847d91 data-element_typewidget data-settings{"full_width":"stretch","layout":"horizontal","submenu_icon":{"value":"<svg class\"e-font-icon-svg e-fas-caret-down\" viewBox\"0 0 320 512\" xmlns\"http:\/\/www.w3.org\/2000\/svg\"><path d\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"><\/path><\/svg>","library":"fa-solid"},"toggle":"burger"} data-widget_typenav-menu.default> div classelementor-widget-container> nav aria-labelMenu classelementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade> ul idmenu-1-5847d91 classelementor-nav-menu>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item menu-item-3323>a hrefhttps://sandspringseducationfoundation.com/ aria-currentpage classelementor-item elementor-item-active>Home/a>/li>li classhof-button menu-item menu-item-type-custom menu-item-object-custom menu-item-3329>a hrefhttps://hof.sandspringseducationfoundation.com/2025 classelementor-item>2025 Hall of Fame Banquet/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3324>a hrefhttps://sandspringseducationfoundation.com/about-us/ classelementor-item>About Us/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3325>a hrefhttps://sandspringseducationfoundation.com/support/ classelementor-item>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3326>a hrefhttps://sandspringseducationfoundation.com/grant-stories/ classelementor-item>Grant Stories/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3327>a hrefhttps://sandspringseducationfoundation.com/educator-resources-2/ classelementor-item>Educator Resources/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3328>a hrefhttps://sandspringseducationfoundation.com/contact-us/ classelementor-item>Contact Us/a>/li>/ul> /nav> div classelementor-menu-toggle rolebutton tabindex0 aria-labelMenu Toggle aria-expandedfalse> svg aria-hiddentrue rolepresentation classelementor-menu-toggle__icon--open e-font-icon-svg e-eicon-menu-bar viewBox0 0 1000 1000 xmlnshttp://www.w3.org/2000/svg>path dM104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z>/path>/svg>svg aria-hiddentrue rolepresentation classelementor-menu-toggle__icon--close e-font-icon-svg e-eicon-close viewBox0 0 1000 1000 xmlnshttp://www.w3.org/2000/svg>path dM742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z>/path>/svg> /div> nav classelementor-nav-menu--dropdown elementor-nav-menu__container aria-hiddentrue> ul idmenu-2-5847d91 classelementor-nav-menu>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item menu-item-3323>a hrefhttps://sandspringseducationfoundation.com/ aria-currentpage classelementor-item elementor-item-active tabindex-1>Home/a>/li>li classhof-button menu-item menu-item-type-custom menu-item-object-custom menu-item-3329>a hrefhttps://hof.sandspringseducationfoundation.com/2025 classelementor-item tabindex-1>2025 Hall of Fame Banquet/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3324>a hrefhttps://sandspringseducationfoundation.com/about-us/ classelementor-item tabindex-1>About Us/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3325>a hrefhttps://sandspringseducationfoundation.com/support/ classelementor-item tabindex-1>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3326>a hrefhttps://sandspringseducationfoundation.com/grant-stories/ classelementor-item tabindex-1>Grant Stories/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3327>a hrefhttps://sandspringseducationfoundation.com/educator-resources-2/ classelementor-item tabindex-1>Educator Resources/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3328>a hrefhttps://sandspringseducationfoundation.com/contact-us/ classelementor-item tabindex-1>Contact Us/a>/li>/ul> /nav> /div> /div> /div> /div> /header> main idcontent classsite-main post-40 page type-page status-publish hentry> div classpage-content> div data-elementor-typewp-page data-elementor-id40 classelementor elementor-40 data-elementor-post-typepage> div classelementor-element elementor-element-7874371 e-con-full elementor-hidden-mobile elementor-hidden-tablet e-flex e-con e-parent data-id7874371 data-element_typecontainer> div classelementor-element elementor-element-35deb8b e-flex e-con-boxed e-con e-child data-id35deb8b data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-12362eb e-flex e-con-boxed e-con e-child data-id12362eb data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> /div> /div> /div> /div> /div> div classelementor-element elementor-element-154e0ac elementor-hidden-mobile elementor-hidden-tablet e-flex e-con-boxed e-con e-parent data-id154e0ac data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-02565ee e-con-full e-flex e-con e-child data-id02565ee data-element_typecontainer> div classelementor-element elementor-element-5e7e4c9 elementor-widget elementor-widget-heading data-id5e7e4c9 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Serving Our Future/h2> /div> /div> div classelementor-element elementor-element-dce6010 elementor-widget__width-auto elementor-invisible elementor-widget elementor-widget-heading data-iddce6010 data-element_typewidget data-settings{"_animation":"fadeIn"} data-widget_typeheading.default> div classelementor-widget-container> h1 classelementor-heading-title elementor-size-default>Through Sand Springs br /> Public Education/h1> /div> /div> div classelementor-element elementor-element-644ea8e elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-left elementor-invisible elementor-widget elementor-widget-button data-id644ea8e data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/support/> span classelementor-button-content-wrapper> span classelementor-button-text>Get Involved/span> /span> /a> /div> /div> /div> /div> div classelementor-element elementor-element-eb993a8 e-con-full e-flex e-con e-child data-ideb993a8 data-element_typecontainer> div classelementor-element elementor-element-fb923ae elementor-widget elementor-widget-video data-idfb923ae data-element_typewidget data-settings{"youtube_url":"https:\/\/youtu.be\/cDAXQ5lFSmY?si5sJ6VrvnTHUBxHgl","autoplay":"yes","play_on_mobile":"yes","mute":"yes","loop":"yes","video_type":"youtube","controls":"yes"} data-widget_typevideo.default> div classelementor-widget-container> div classelementor-wrapper elementor-open-inline> div classelementor-video>/div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-621b200 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent data-id621b200 data-element_typecontainer> div classelementor-element elementor-element-4131c34 e-con-full e-flex e-con e-child data-id4131c34 data-element_typecontainer> div classelementor-element elementor-element-7d5023b elementor-widget elementor-widget-video data-id7d5023b data-element_typewidget data-settings{"mute":"yes","video_type":"hosted","controls":"yes"} data-widget_typevideo.default> div classelementor-widget-container> div classe-hosted-video elementor-wrapper elementor-open-inline> video classelementor-video srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/5.mov controls preloadmetadata mutedmuted controlsListnodownload>/video> /div> /div> /div> /div> div classelementor-element elementor-element-9c2bcdd e-con-full e-flex e-con e-child data-id9c2bcdd data-element_typecontainer> div classelementor-element elementor-element-ec59267 elementor-widget elementor-widget-heading data-idec59267 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Our mission/h2> /div> /div> div classelementor-element elementor-element-ae0dff9 elementor-widget elementor-widget-text-editor data-idae0dff9 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>The Sand Springs Education Foundation’s purpose is to serve as a private partner of the Sand Springs Public Schools, providing grants to support programs and teaching projects for which funds are not available from federal, state and local sources./p> /div> /div> div classelementor-element elementor-element-af40819 elementor-tablet-align-left elementor-mobile-align-center elementor-widget__width-inherit elementor-align-left elementor-invisible elementor-widget elementor-widget-button data-idaf40819 data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/about-us/> span classelementor-button-content-wrapper> span classelementor-button-text>Learn More/span> /span> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-81c0a60 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent data-id81c0a60 data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-a798814 elementor-widget elementor-widget-heading data-ida798814 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>SERVING OUR FUTURE/h2> /div> /div> div classelementor-element elementor-element-0dc5552 elementor-widget elementor-widget-heading data-id0dc5552 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>THROUGH SAND SPRINGSPUBLIC EDUCATION/h2> /div> /div> /div> /div> div classelementor-element elementor-element-c7b7f30 e-con-full elementor-hidden-desktop e-flex e-con e-parent data-idc7b7f30 data-element_typecontainer> div classelementor-element elementor-element-4e4ea57 e-con-full e-flex e-con e-child data-id4e4ea57 data-element_typecontainer> div classelementor-element elementor-element-e375cf2 elementor-widget elementor-widget-video data-ide375cf2 data-element_typewidget data-settings{"youtube_url":"https:\/\/youtu.be\/cDAXQ5lFSmY?si5sJ6VrvnTHUBxHgl","play_on_mobile":"yes","mute":"yes","autoplay":"yes","video_type":"youtube","controls":"yes"} data-widget_typevideo.default> div classelementor-widget-container> div classelementor-wrapper elementor-open-inline> div classelementor-video>/div> /div> /div> /div> /div> div classelementor-element elementor-element-cb90668 e-con-full e-flex e-con e-child data-idcb90668 data-element_typecontainer> div classelementor-element elementor-element-2e88a00 elementor-widget elementor-widget-heading data-id2e88a00 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Our mission/h2> /div> /div> div classelementor-element elementor-element-969578e elementor-widget elementor-widget-text-editor data-id969578e data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>The Sand Springs Education Foundation’s purpose is to serve as a private partner of the Sand Springs Public Schools, providing grants to support programs and teaching projects for which funds are not available from federal, state and local sources./p> /div> /div> div classelementor-element elementor-element-c69a8af elementor-tablet-align-left elementor-mobile-align-center elementor-widget__width-inherit elementor-align-left elementor-invisible elementor-widget elementor-widget-button data-idc69a8af data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/about-us/> span classelementor-button-content-wrapper> span classelementor-button-text>Learn More/span> /span> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-36d674f6 e-flex e-con-boxed e-con e-parent data-id36d674f6 data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-59c2b218 elementor-widget__width-inherit elementor-widget elementor-widget-heading data-id59c2b218 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Invest in Sand Springs Future/h2> /div> /div> div classelementor-element elementor-element-470ea4a e-con-full e-flex e-con e-child data-id470ea4a data-element_typecontainer> div classelementor-element elementor-element-14b45927 e-con-full e-flex e-con e-child data-id14b45927 data-element_typecontainer> div classelementor-element elementor-element-20f2f611 elementor-view-default elementor-widget elementor-widget-icon data-id20f2f611 data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> div classelementor-icon> svg xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink width100 viewBox0 0 75 74.999997 height100 preserveAspectRatioxMidYMid meet>defs>clipPath id27f5088410>path dM 2.671875 16 L 28 16 L 28 35 L 2.671875 35 Z M 2.671875 16 clip-rulenonzero>/path>/clipPath>clipPath idffd89765b4>path dM 47 16 L 72.421875 16 L 72.421875 35 L 47 35 Z M 47 16 clip-rulenonzero>/path>/clipPath>clipPath ide609613872>path dM 2.671875 32 L 72.421875 32 L 72.421875 75 L 2.671875 75 Z M 2.671875 32 clip-rulenonzero>/path>/clipPath>clipPath id83288d8a48>path dM 2.671875 32 L 72.421875 32 L 72.421875 35 L 2.671875 35 Z M 2.671875 32 clip-rulenonzero>/path>/clipPath>/defs>path fill#000000 dM 37.480469 14.769531 C 37.214844 14.769531 36.953125 14.746094 36.695312 14.695312 C 36.4375 14.644531 36.1875 14.566406 35.941406 14.464844 C 35.699219 14.367188 35.46875 14.242188 35.25 14.09375 C 35.03125 13.949219 34.828125 13.78125 34.640625 13.597656 C 34.453125 13.410156 34.285156 13.207031 34.140625 12.988281 C 33.992188 12.769531 33.871094 12.539062 33.769531 12.296875 C 33.667969 12.050781 33.59375 11.800781 33.539062 11.542969 C 33.488281 11.285156 33.464844 11.023438 33.464844 10.761719 C 33.464844 10.496094 33.488281 10.238281 33.539062 9.976562 C 33.59375 9.71875 33.667969 9.46875 33.769531 9.226562 C 33.871094 8.980469 33.992188 8.75 34.140625 8.53125 C 34.285156 8.3125 34.453125 8.109375 34.640625 7.925781 C 34.828125 7.738281 35.03125 7.570312 35.25 7.425781 C 35.46875 7.277344 35.699219 7.15625 35.941406 7.054688 C 36.1875 6.953125 36.4375 6.878906 36.695312 6.828125 C 36.953125 6.773438 37.214844 6.75 37.480469 6.75 C 37.742188 6.75 38.003906 6.773438 38.261719 6.828125 C 38.523438 6.878906 38.773438 6.953125 39.015625 7.054688 C 39.261719 7.15625 39.492188 7.277344 39.710938 7.425781 C 39.929688 7.570312 40.132812 7.738281 40.320312 7.925781 C 40.507812 8.109375 40.671875 8.3125 40.820312 8.53125 C 40.964844 8.75 41.089844 8.980469 41.191406 9.226562 C 41.292969 9.46875 41.367188 9.71875 41.417969 9.976562 C 41.46875 10.238281 41.496094 10.496094 41.496094 10.761719 C 41.496094 10.9375 41.460938 11.109375 41.394531 11.273438 C 41.328125 11.4375 41.230469 11.582031 41.105469 11.707031 C 40.980469 11.832031 40.832031 11.929688 40.667969 11.996094 C 40.503906 12.0625 40.335938 12.097656 40.15625 12.097656 C 39.980469 12.097656 39.808594 12.0625 39.644531 11.996094 C 39.480469 11.929688 39.335938 11.832031 39.210938 11.707031 C 39.085938 11.582031 38.988281 11.4375 38.921875 11.273438 C 38.851562 11.109375 38.820312 10.9375 38.820312 10.761719 C 38.820312 10.582031 38.785156 10.414062 38.71875 10.25 C 38.648438 10.085938 38.550781 9.941406 38.425781 9.816406 C 38.300781 9.691406 38.15625 9.59375 37.992188 9.523438 C 37.828125 9.457031 37.65625 9.421875 37.480469 9.421875 C 37.300781 9.421875 37.132812 9.457031 36.96875 9.523438 C 36.804688 9.59375 36.660156 9.691406 36.535156 9.816406 C 36.40625 9.941406 36.3125 10.085938 36.242188 10.25 C 36.175781 10.414062 36.140625 10.582031 36.140625 10.761719 C 36.140625 10.9375 36.175781 11.109375 36.242188 11.273438 C 36.3125 11.4375 36.40625 11.582031 36.535156 11.707031 C 36.660156 11.832031 36.804688 11.929688 36.96875 11.996094 C 37.132812 12.0625 37.300781 12.097656 37.480469 12.097656 C 37.65625 12.097656 37.828125 12.132812 37.992188 12.199219 C 38.15625 12.265625 38.300781 12.363281 38.425781 12.488281 C 38.550781 12.613281 38.648438 12.757812 38.71875 12.921875 C 38.785156 13.085938 38.820312 13.257812 38.820312 13.433594 C 38.820312 13.613281 38.785156 13.78125 38.71875 13.945312 C 38.648438 14.109375 38.550781 14.253906 38.425781 14.378906 C 38.300781 14.503906 38.15625 14.601562 37.992188 14.667969 C 37.828125 14.738281 37.65625 14.769531 37.480469 14.769531 Z M 37.480469 14.769531 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 37.480469 20.121094 C 37.214844 20.117188 36.957031 20.09375 36.695312 20.042969 C 36.4375 19.988281 36.1875 19.914062 35.945312 19.8125 C 35.699219 19.710938 35.46875 19.589844 35.25 19.441406 C 35.03125 19.296875 34.828125 19.128906 34.640625 18.941406 C 34.453125 18.757812 34.289062 18.554688 34.140625 18.335938 C 33.996094 18.117188 33.871094 17.886719 33.769531 17.644531 C 33.667969 17.398438 33.59375 17.148438 33.542969 16.890625 C 33.488281 16.632812 33.464844 16.371094 33.464844 16.109375 C 33.464844 15.929688 33.496094 15.761719 33.566406 15.597656 C 33.632812 15.433594 33.730469 15.289062 33.855469 15.164062 C 33.980469 15.039062 34.125 14.941406 34.289062 14.875 C 34.453125 14.804688 34.625 14.769531 34.800781 14.769531 C 34.980469 14.769531 35.152344 14.804688 35.316406 14.875 C 35.480469 14.941406 35.625 15.039062 35.75 15.164062 C 35.875 15.289062 35.972656 15.433594 36.039062 15.597656 C 36.105469 15.761719 36.140625 15.929688 36.140625 16.109375 C 36.140625 16.285156 36.175781 16.457031 36.242188 16.621094 C 36.3125 16.785156 36.40625 16.929688 36.535156 17.054688 C 36.660156 17.179688 36.804688 17.277344 36.96875 17.34375 C 37.132812 17.410156 37.300781 17.445312 37.480469 17.445312 C 37.65625 17.445312 37.828125 17.410156 37.992188 17.34375 C 38.15625 17.277344 38.300781 17.179688 38.425781 17.054688 C 38.550781 16.929688 38.648438 16.785156 38.71875 16.621094 C 38.785156 16.457031 38.820312 16.285156 38.820312 16.109375 C 38.820312 15.929688 38.785156 15.761719 38.71875 15.597656 C 38.648438 15.433594 38.550781 15.289062 38.425781 15.164062 C 38.300781 15.039062 38.15625 14.941406 37.992188 14.875 C 37.828125 14.804688 37.65625 14.769531 37.480469 14.769531 C 37.300781 14.769531 37.132812 14.738281 36.96875 14.667969 C 36.804688 14.601562 36.660156 14.503906 36.535156 14.378906 C 36.40625 14.253906 36.3125 14.109375 36.242188 13.945312 C 36.175781 13.78125 36.140625 13.613281 36.140625 13.433594 C 36.140625 13.257812 36.175781 13.085938 36.242188 12.921875 C 36.3125 12.757812 36.40625 12.613281 36.535156 12.488281 C 36.660156 12.363281 36.804688 12.265625 36.96875 12.199219 C 37.132812 12.132812 37.300781 12.097656 37.480469 12.097656 C 37.742188 12.097656 38.003906 12.125 38.261719 12.175781 C 38.523438 12.226562 38.773438 12.300781 39.015625 12.402344 C 39.261719 12.503906 39.492188 12.628906 39.710938 12.773438 C 39.929688 12.917969 40.132812 13.085938 40.320312 13.273438 C 40.507812 13.457031 40.671875 13.660156 40.820312 13.878906 C 40.964844 14.097656 41.089844 14.332031 41.191406 14.574219 C 41.292969 14.816406 41.367188 15.066406 41.417969 15.324219 C 41.46875 15.585938 41.496094 15.84375 41.496094 16.109375 C 41.496094 16.371094 41.46875 16.632812 41.417969 16.890625 C 41.367188 17.148438 41.292969 17.398438 41.191406 17.644531 C 41.089844 17.886719 40.964844 18.117188 40.820312 18.335938 C 40.671875 18.554688 40.507812 18.757812 40.320312 18.945312 C 40.132812 19.128906 39.929688 19.296875 39.710938 19.445312 C 39.492188 19.589844 39.261719 19.714844 39.015625 19.8125 C 38.773438 19.914062 38.523438 19.992188 38.261719 20.042969 C 38.003906 20.09375 37.742188 20.121094 37.480469 20.121094 Z M 37.480469 20.121094 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 37.480469 9.421875 C 37.300781 9.421875 37.132812 9.390625 36.96875 9.320312 C 36.804688 9.253906 36.660156 9.15625 36.535156 9.03125 C 36.40625 8.90625 36.3125 8.761719 36.242188 8.597656 C 36.175781 8.433594 36.140625 8.265625 36.140625 8.085938 L 36.140625 6.75 C 36.140625 6.574219 36.175781 6.402344 36.242188 6.238281 C 36.3125 6.074219 36.40625 5.929688 36.535156 5.804688 C 36.660156 5.679688 36.804688 5.582031 36.96875 5.515625 C 37.132812 5.445312 37.300781 5.414062 37.480469 5.414062 C 37.65625 5.414062 37.828125 5.445312 37.992188 5.515625 C 38.15625 5.582031 38.300781 5.679688 38.425781 5.804688 C 38.550781 5.929688 38.648438 6.074219 38.71875 6.238281 C 38.785156 6.402344 38.820312 6.574219 38.820312 6.75 L 38.820312 8.085938 C 38.820312 8.265625 38.785156 8.433594 38.71875 8.597656 C 38.648438 8.761719 38.550781 8.90625 38.425781 9.03125 C 38.300781 9.15625 38.15625 9.253906 37.992188 9.320312 C 37.828125 9.390625 37.65625 9.421875 37.480469 9.421875 Z M 37.480469 9.421875 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 37.480469 21.457031 C 37.300781 21.457031 37.132812 21.421875 36.96875 21.355469 C 36.804688 21.285156 36.660156 21.191406 36.535156 21.066406 C 36.40625 20.9375 36.3125 20.792969 36.242188 20.632812 C 36.175781 20.46875 36.140625 20.296875 36.140625 20.121094 L 36.140625 18.78125 C 36.140625 18.605469 36.175781 18.433594 36.242188 18.269531 C 36.3125 18.105469 36.40625 17.960938 36.535156 17.835938 C 36.660156 17.710938 36.804688 17.613281 36.96875 17.546875 C 37.132812 17.480469 37.300781 17.445312 37.480469 17.445312 C 37.65625 17.445312 37.828125 17.480469 37.992188 17.546875 C 38.15625 17.613281 38.300781 17.710938 38.425781 17.835938 C 38.550781 17.960938 38.648438 18.105469 38.71875 18.269531 C 38.785156 18.433594 38.820312 18.605469 38.820312 18.78125 L 38.820312 20.121094 C 38.820312 20.296875 38.785156 20.46875 38.71875 20.632812 C 38.648438 20.792969 38.550781 20.9375 38.425781 21.066406 C 38.300781 21.191406 38.15625 21.285156 37.992188 21.355469 C 37.828125 21.421875 37.65625 21.457031 37.480469 21.457031 Z M 37.480469 21.457031 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 37.480469 26.804688 C 36.601562 26.804688 35.730469 26.71875 34.867188 26.546875 C 34.007812 26.375 33.167969 26.121094 32.355469 25.785156 C 31.542969 25.449219 30.773438 25.039062 30.042969 24.550781 C 29.3125 24.0625 28.636719 23.507812 28.011719 22.886719 C 27.390625 22.265625 26.835938 21.59375 26.347656 20.863281 C 25.859375 20.132812 25.449219 19.363281 25.109375 18.550781 C 24.773438 17.738281 24.519531 16.902344 24.347656 16.042969 C 24.179688 15.183594 24.09375 14.3125 24.09375 13.433594 C 24.09375 12.554688 24.179688 11.6875 24.347656 10.828125 C 24.519531 9.964844 24.773438 9.128906 25.109375 8.316406 C 25.449219 7.507812 25.859375 6.738281 26.347656 6.007812 C 26.835938 5.277344 27.390625 4.601562 28.011719 3.980469 C 28.636719 3.359375 29.3125 2.804688 30.042969 2.316406 C 30.773438 1.832031 31.542969 1.417969 32.355469 1.082031 C 33.167969 0.746094 34.007812 0.492188 34.867188 0.320312 C 35.730469 0.152344 36.601562 0.0664062 37.480469 0.0664062 C 38.359375 0.0664062 39.230469 0.152344 40.089844 0.320312 C 40.953125 0.492188 41.792969 0.746094 42.601562 1.082031 C 43.414062 1.417969 44.1875 1.832031 44.917969 2.316406 C 45.648438 2.804688 46.324219 3.359375 46.945312 3.980469 C 47.566406 4.601562 48.121094 5.277344 48.613281 6.007812 C 49.101562 6.738281 49.511719 7.507812 49.847656 8.316406 C 50.183594 9.128906 50.4375 9.964844 50.609375 10.828125 C 50.78125 11.6875 50.867188 12.554688 50.867188 13.433594 C 50.867188 14.3125 50.78125 15.179688 50.609375 16.042969 C 50.4375 16.902344 50.179688 17.738281 49.84375 18.546875 C 49.507812 19.359375 49.09375 20.128906 48.605469 20.859375 C 48.117188 21.589844 47.5625 22.261719 46.941406 22.882812 C 46.320312 23.503906 45.644531 24.058594 44.914062 24.546875 C 44.183594 25.035156 43.414062 25.445312 42.601562 25.78125 C 41.789062 26.117188 40.953125 26.371094 40.089844 26.542969 C 39.230469 26.714844 38.359375 26.804688 37.480469 26.804688 Z M 37.480469 2.738281 C 36.777344 2.738281 36.082031 2.808594 35.390625 2.945312 C 34.699219 3.082031 34.03125 3.285156 33.382812 3.554688 C 32.730469 3.820312 32.113281 4.152344 31.53125 4.542969 C 30.945312 4.929688 30.402344 5.375 29.90625 5.871094 C 29.410156 6.367188 28.964844 6.910156 28.574219 7.492188 C 28.183594 8.078125 27.855469 8.691406 27.585938 9.339844 C 27.316406 9.992188 27.113281 10.660156 26.976562 11.347656 C 26.839844 12.035156 26.769531 12.730469 26.769531 13.433594 C 26.769531 14.136719 26.839844 14.832031 26.976562 15.519531 C 27.113281 16.210938 27.316406 16.878906 27.585938 17.527344 C 27.855469 18.175781 28.183594 18.792969 28.574219 19.375 C 28.964844 19.960938 29.410156 20.5 29.90625 20.996094 C 30.402344 21.496094 30.945312 21.9375 31.53125 22.328125 C 32.113281 22.71875 32.730469 23.046875 33.382812 23.316406 C 34.03125 23.585938 34.699219 23.789062 35.390625 23.925781 C 36.082031 24.0625 36.777344 24.128906 37.480469 24.128906 C 38.183594 24.128906 38.878906 24.0625 39.570312 23.925781 C 40.257812 23.789062 40.929688 23.585938 41.578125 23.316406 C 42.226562 23.046875 42.84375 22.71875 43.429688 22.328125 C 44.015625 21.9375 44.554688 21.496094 45.054688 20.996094 C 45.550781 20.5 45.996094 19.960938 46.386719 19.375 C 46.777344 18.792969 47.105469 18.175781 47.375 17.527344 C 47.644531 16.878906 47.847656 16.210938 47.984375 15.519531 C 48.121094 14.832031 48.191406 14.136719 48.191406 13.433594 C 48.1875 12.734375 48.121094 12.039062 47.980469 11.347656 C 47.84375 10.660156 47.640625 9.992188 47.371094 9.34375 C 47.101562 8.695312 46.773438 8.078125 46.382812 7.496094 C 45.992188 6.910156 45.546875 6.371094 45.050781 5.875 C 44.550781 5.378906 44.011719 4.933594 43.425781 4.546875 C 42.84375 4.15625 42.226562 3.824219 41.578125 3.554688 C 40.925781 3.289062 40.257812 3.082031 39.570312 2.945312 C 38.878906 2.808594 38.183594 2.738281 37.480469 2.738281 Z M 37.480469 2.738281 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 54.882812 26.804688 L 20.074219 26.804688 C 19.898438 26.804688 19.726562 26.769531 19.5625 26.703125 C 19.398438 26.632812 19.253906 26.539062 19.128906 26.414062 C 19.003906 26.289062 18.90625 26.144531 18.839844 25.980469 C 18.769531 25.816406 18.738281 25.644531 18.738281 25.46875 C 18.738281 25.289062 18.769531 25.121094 18.839844 24.957031 C 18.90625 24.792969 19.003906 24.648438 19.128906 24.523438 C 19.253906 24.398438 19.398438 24.300781 19.5625 24.230469 C 19.726562 24.164062 19.898438 24.128906 20.074219 24.128906 L 54.882812 24.128906 C 55.0625 24.128906 55.230469 24.164062 55.394531 24.230469 C 55.558594 24.300781 55.707031 24.398438 55.832031 24.523438 C 55.957031 24.648438 56.054688 24.792969 56.121094 24.957031 C 56.1875 25.121094 56.222656 25.289062 56.222656 25.46875 C 56.222656 25.644531 56.1875 25.816406 56.121094 25.980469 C 56.054688 26.144531 55.957031 26.289062 55.832031 26.414062 C 55.707031 26.539062 55.558594 26.632812 55.394531 26.703125 C 55.230469 26.769531 55.0625 26.804688 54.882812 26.804688 Z M 54.882812 26.804688 fill-opacity1 fill-rulenonzero>/path>g clip-pathurl(#27f5088410)>path fill#000000 dM 4.007812 34.824219 C 3.894531 34.824219 3.78125 34.8125 3.671875 34.78125 C 3.5625 34.753906 3.457031 34.710938 3.359375 34.65625 C 3.257812 34.601562 3.167969 34.535156 3.085938 34.453125 C 3.003906 34.375 2.929688 34.289062 2.871094 34.191406 C 2.8125 34.09375 2.765625 33.992188 2.730469 33.882812 C 2.699219 33.773438 2.679688 33.664062 2.671875 33.546875 C 2.667969 33.433594 2.675781 33.324219 2.699219 33.210938 C 2.726562 33.097656 2.761719 32.992188 2.8125 32.890625 L 10.847656 16.847656 C 10.960938 16.621094 11.125 16.441406 11.339844 16.308594 C 11.554688 16.175781 11.789062 16.109375 12.042969 16.109375 L 26.128906 16.109375 C 26.304688 16.109375 26.476562 16.140625 26.640625 16.210938 C 26.804688 16.277344 26.949219 16.375 27.074219 16.5 C 27.199219 16.625 27.296875 16.769531 27.363281 16.933594 C 27.433594 17.097656 27.464844 17.269531 27.464844 17.445312 C 27.464844 17.621094 27.433594 17.792969 27.363281 17.957031 C 27.296875 18.121094 27.199219 18.265625 27.074219 18.390625 C 26.949219 18.515625 26.804688 18.613281 26.640625 18.679688 C 26.476562 18.75 26.304688 18.78125 26.128906 18.78125 L 12.871094 18.78125 L 5.207031 34.085938 C 5.09375 34.3125 4.929688 34.492188 4.714844 34.625 C 4.496094 34.761719 4.261719 34.828125 4.007812 34.824219 Z M 4.007812 34.824219 fill-opacity1 fill-rulenonzero>/path>/g>g clip-pathurl(#ffd89765b4)>path fill#000000 dM 70.949219 34.824219 C 70.695312 34.828125 70.460938 34.761719 70.246094 34.628906 C 70.03125 34.492188 69.863281 34.3125 69.75 34.085938 L 62.089844 18.78125 L 48.832031 18.78125 C 48.65625 18.78125 48.484375 18.75 48.320312 18.679688 C 48.15625 18.613281 48.011719 18.515625 47.886719 18.390625 C 47.761719 18.265625 47.664062 18.121094 47.597656 17.957031 C 47.527344 17.792969 47.496094 17.621094 47.496094 17.445312 C 47.496094 17.269531 47.527344 17.097656 47.597656 16.933594 C 47.664062 16.769531 47.761719 16.625 47.886719 16.5 C 48.011719 16.375 48.15625 16.277344 48.320312 16.210938 C 48.484375 16.140625 48.65625 16.109375 48.832031 16.109375 L 62.917969 16.109375 C 63.171875 16.109375 63.40625 16.175781 63.621094 16.308594 C 63.835938 16.441406 64 16.621094 64.113281 16.847656 L 72.148438 32.890625 C 72.199219 32.992188 72.234375 33.097656 72.257812 33.210938 C 72.28125 33.324219 72.292969 33.433594 72.285156 33.546875 C 72.28125 33.664062 72.261719 33.773438 72.230469 33.882812 C 72.195312 33.992188 72.148438 34.09375 72.089844 34.191406 C 72.027344 34.289062 71.957031 34.375 71.875 34.453125 C 71.792969 34.535156 71.703125 34.601562 71.601562 34.65625 C 71.503906 34.710938 71.398438 34.753906 71.289062 34.78125 C 71.175781 34.8125 71.066406 34.824219 70.949219 34.824219 Z M 70.949219 34.824219 fill-opacity1 fill-rulenonzero>/path>/g>g clip-pathurl(#e609613872)>path fill#000000 dM 70.949219 74.933594 L 4.011719 74.933594 C 3.832031 74.933594 3.664062 74.902344 3.5 74.832031 C 3.335938 74.765625 3.191406 74.667969 3.0625 74.542969 C 2.9375 74.417969 2.839844 74.273438 2.773438 74.109375 C 2.707031 73.945312 2.671875 73.777344 2.671875 73.597656 L 2.671875 33.488281 C 2.671875 33.3125 2.707031 33.140625 2.773438 32.976562 C 2.839844 32.8125 2.9375 32.667969 3.0625 32.542969 C 3.191406 32.417969 3.335938 32.320312 3.5 32.253906 C 3.664062 32.1875 3.832031 32.152344 4.011719 32.152344 C 4.1875 32.152344 4.359375 32.1875 4.523438 32.253906 C 4.6875 32.320312 4.832031 32.417969 4.957031 32.542969 C 5.082031 32.667969 5.179688 32.8125 5.246094 32.976562 C 5.316406 33.140625 5.347656 33.3125 5.347656 33.488281 L 5.347656 72.261719 L 69.609375 72.261719 L 69.609375 33.488281 C 69.609375 33.3125 69.644531 33.140625 69.710938 32.976562 C 69.78125 32.8125 69.878906 32.667969 70.003906 32.542969 C 70.128906 32.417969 70.273438 32.320312 70.4375 32.253906 C 70.601562 32.1875 70.773438 32.152344 70.949219 32.152344 C 71.125 32.152344 71.296875 32.1875 71.460938 32.253906 C 71.625 32.320312 71.769531 32.417969 71.894531 32.542969 C 72.019531 32.667969 72.117188 32.8125 72.1875 32.976562 C 72.253906 33.140625 72.289062 33.3125 72.289062 33.488281 L 72.289062 73.597656 C 72.289062 73.777344 72.253906 73.945312 72.1875 74.109375 C 72.117188 74.273438 72.019531 74.417969 71.894531 74.542969 C 71.769531 74.667969 71.625 74.765625 71.460938 74.832031 C 71.296875 74.902344 71.125 74.933594 70.949219 74.933594 Z M 70.949219 74.933594 fill-opacity1 fill-rulenonzero>/path>/g>g clip-pathurl(#83288d8a48)>path fill#000000 dM 70.949219 34.824219 L 4.011719 34.824219 C 3.832031 34.824219 3.664062 34.792969 3.5 34.722656 C 3.335938 34.65625 3.191406 34.558594 3.0625 34.433594 C 2.9375 34.308594 2.839844 34.164062 2.773438 34 C 2.707031 33.835938 2.671875 33.667969 2.671875 33.488281 C 2.671875 33.3125 2.707031 33.140625 2.773438 32.976562 C 2.839844 32.8125 2.9375 32.667969 3.0625 32.542969 C 3.191406 32.417969 3.335938 32.320312 3.5 32.253906 C 3.664062 32.1875 3.832031 32.152344 4.011719 32.152344 L 70.949219 32.152344 C 71.125 32.152344 71.296875 32.1875 71.460938 32.253906 C 71.625 32.320312 71.769531 32.417969 71.894531 32.542969 C 72.019531 32.667969 72.117188 32.8125 72.1875 32.976562 C 72.253906 33.140625 72.289062 33.3125 72.289062 33.488281 C 72.289062 33.667969 72.253906 33.835938 72.1875 34 C 72.117188 34.164062 72.019531 34.308594 71.894531 34.433594 C 71.769531 34.558594 71.625 34.65625 71.460938 34.722656 C 71.296875 34.792969 71.125 34.824219 70.949219 34.824219 Z M 70.949219 34.824219 fill-opacity1 fill-rulenonzero>/path>/g>path fill#000000 dM 37.480469 66.257812 C 37.109375 66.257812 36.792969 66.128906 36.535156 65.867188 L 25.171875 54.523438 C 24.804688 54.148438 24.476562 53.742188 24.1875 53.304688 C 23.898438 52.867188 23.652344 52.40625 23.453125 51.921875 C 23.253906 51.433594 23.105469 50.933594 23.003906 50.417969 C 22.90625 49.90625 22.855469 49.386719 22.859375 48.859375 C 22.859375 48.335938 22.914062 47.816406 23.015625 47.300781 C 23.121094 46.789062 23.273438 46.289062 23.472656 45.804688 C 23.675781 45.320312 23.921875 44.859375 24.214844 44.425781 C 24.507812 43.988281 24.839844 43.585938 25.210938 43.214844 C 25.582031 42.84375 25.984375 42.511719 26.421875 42.21875 C 26.859375 41.929688 27.320312 41.683594 27.804688 41.480469 C 28.289062 41.277344 28.789062 41.125 29.304688 41.023438 C 29.820312 40.917969 30.339844 40.867188 30.863281 40.863281 C 31.390625 40.863281 31.910156 40.914062 32.425781 41.011719 C 32.941406 41.113281 33.441406 41.261719 33.929688 41.460938 C 34.414062 41.660156 34.875 41.902344 35.316406 42.191406 C 35.753906 42.480469 36.160156 42.808594 36.535156 43.179688 L 37.480469 44.125 L 38.425781 43.179688 C 38.800781 42.804688 39.207031 42.472656 39.644531 42.183594 C 40.082031 41.890625 40.546875 41.644531 41.03125 41.441406 C 41.519531 41.242188 42.023438 41.089844 42.539062 40.984375 C 43.058594 40.882812 43.578125 40.832031 44.105469 40.832031 C 44.632812 40.832031 45.15625 40.882812 45.671875 40.984375 C 46.191406 41.089844 46.691406 41.242188 47.179688 41.441406 C 47.667969 41.644531 48.128906 41.890625 48.570312 42.183594 C 49.007812 42.472656 49.414062 42.804688 49.785156 43.179688 C 50.160156 43.550781 50.492188 43.957031 50.785156 44.394531 C 51.078125 44.832031 51.324219 45.292969 51.523438 45.78125 C 51.726562 46.265625 51.878906 46.769531 51.980469 47.285156 C 52.082031 47.800781 52.136719 48.324219 52.136719 48.851562 C 52.136719 49.375 52.082031 49.898438 51.980469 50.414062 C 51.878906 50.929688 51.726562 51.433594 51.523438 51.917969 C 51.324219 52.40625 51.078125 52.867188 50.785156 53.304688 C 50.492188 53.742188 50.160156 54.148438 49.785156 54.523438 L 38.425781 65.867188 C 38.164062 66.128906 37.851562 66.257812 37.480469 66.257812 Z M 30.855469 43.503906 C 30.324219 43.503906 29.804688 43.582031 29.300781 43.734375 C 28.792969 43.886719 28.320312 44.109375 27.878906 44.40625 C 27.4375 44.699219 27.050781 45.050781 26.714844 45.457031 C 26.378906 45.867188 26.109375 46.316406 25.90625 46.804688 C 25.703125 47.292969 25.574219 47.800781 25.523438 48.328125 C 25.472656 48.851562 25.496094 49.375 25.601562 49.894531 C 25.703125 50.414062 25.878906 50.90625 26.128906 51.371094 C 26.378906 51.835938 26.691406 52.257812 27.066406 52.632812 L 37.480469 63.03125 L 47.894531 52.632812 C 48.140625 52.382812 48.363281 52.113281 48.558594 51.820312 C 48.753906 51.527344 48.917969 51.21875 49.050781 50.894531 C 49.1875 50.570312 49.289062 50.238281 49.355469 49.894531 C 49.425781 49.550781 49.457031 49.203125 49.457031 48.851562 C 49.457031 48.5 49.425781 48.152344 49.355469 47.808594 C 49.289062 47.464844 49.1875 47.128906 49.050781 46.804688 C 48.917969 46.480469 48.753906 46.171875 48.558594 45.878906 C 48.363281 45.585938 48.140625 45.316406 47.894531 45.070312 C 47.644531 44.820312 47.375 44.601562 47.082031 44.40625 C 46.789062 44.210938 46.480469 44.046875 46.15625 43.910156 C 45.832031 43.777344 45.496094 43.675781 45.152344 43.609375 C 44.804688 43.539062 44.457031 43.507812 44.105469 43.507812 C 43.753906 43.507812 43.40625 43.539062 43.0625 43.609375 C 42.71875 43.675781 42.382812 43.777344 42.058594 43.910156 C 41.734375 44.046875 41.425781 44.210938 41.132812 44.40625 C 40.839844 44.601562 40.570312 44.820312 40.320312 45.070312 L 38.425781 46.960938 C 38.300781 47.085938 38.15625 47.179688 37.992188 47.25 C 37.828125 47.316406 37.65625 47.351562 37.480469 47.351562 C 37.300781 47.351562 37.132812 47.316406 36.96875 47.25 C 36.804688 47.179688 36.660156 47.085938 36.535156 46.960938 L 34.640625 45.070312 C 34.136719 44.566406 33.558594 44.179688 32.902344 43.910156 C 32.246094 43.640625 31.5625 43.503906 30.855469 43.503906 Z M 30.855469 43.503906 fill-opacity1 fill-rulenonzero>/path>/svg> /div> /div> /div> /div> div classelementor-element elementor-element-3895cfbf elementor-widget elementor-widget-heading data-id3895cfbf data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>Donations/h3> /div> /div> div classelementor-element elementor-element-21e2cf53 elementor-widget elementor-widget-text-editor data-id21e2cf53 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>No matter the size, your donation makes a real difference. Empower the next generation of Sandites by making a one-time gift or becoming a recurring donor./p> /div> /div> div classelementor-element elementor-element-14672c09 elementor-align-center elementor-widget__width-inherit elementor-widget elementor-widget-paypal-button data-id14672c09 data-element_typewidget data-settings{"merchant_account":"simple"} data-widget_typepaypal-button.default> div classelementor-widget-container> div classelementor-button-wrapper> form actionhttps://www.paypal.com/cgi-bin/webscr methodpost target_blank> input typehidden namecmd value_donations /> input typehidden namebusiness valuessef@att.net /> input typehidden namelc valueUS /> input typehidden nameitem_name valueWebsite Donation /> input typehidden nameitem_number value /> input typehidden namecurrency_code valueUSD /> input typehidden nameamount value /> input typehidden nameno_note value1> button classelementor-button elementor-size-sm elementor-paypal-legacy elementor-payment-button rolebutton typesubmit> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fab-paypal viewBox0 0 384 512 xmlnshttp://www.w3.org/2000/svg>path dM111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z>/path>/svg> /span> span classelementor-button-text>Give Now/span> /span> /button> /form> /div> /div> /div> /div> div classelementor-element elementor-element-7d9b4fee e-flex e-con-boxed e-con e-child data-id7d9b4fee data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-5a871759 elementor-view-default elementor-widget elementor-widget-icon data-id5a871759 data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> div classelementor-icon> svg xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink width100 viewBox0 0 75 74.999997 height100 preserveAspectRatioxMidYMid meet>path fill#000000 dM 41.632812 15.105469 C 40.253906 15.105469 39.171875 15.90625 38.453125 16.648438 C 37.734375 15.90625 36.652344 15.105469 35.273438 15.105469 C 32.648438 15.105469 30.519531 17.238281 30.519531 19.863281 C 30.519531 23.160156 36.699219 27.761719 37.9375 28.65625 C 38.089844 28.765625 38.265625 28.824219 38.453125 28.824219 C 38.640625 28.824219 38.820312 28.765625 38.972656 28.65625 C 40.207031 27.761719 46.390625 23.160156 46.390625 19.863281 C 46.390625 17.25 44.257812 15.105469 41.632812 15.105469 Z M 38.453125 26.84375 C 35.734375 24.796875 32.285156 21.523438 32.285156 19.863281 C 32.285156 18.214844 33.625 16.871094 35.273438 16.871094 C 36.226562 16.871094 37.160156 17.730469 37.722656 18.542969 C 38.054688 19.015625 38.84375 19.015625 39.171875 18.542969 C 39.738281 17.730469 40.679688 16.871094 41.621094 16.871094 C 43.269531 16.871094 44.613281 18.214844 44.613281 19.863281 C 44.625 21.523438 41.171875 24.796875 38.453125 26.84375 Z M 38.453125 26.84375 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 46.332031 5.273438 C 45.695312 5.273438 45.105469 5.464844 44.589844 5.757812 L 44.589844 5.640625 C 44.589844 3.707031 43.011719 2.132812 41.078125 2.132812 C 40.371094 2.132812 39.726562 2.34375 39.183594 2.695312 C 38.761719 1.246094 37.417969 0.175781 35.828125 0.175781 C 34.238281 0.175781 32.90625 1.246094 32.472656 2.695312 C 31.917969 2.34375 31.273438 2.132812 30.578125 2.132812 C 28.644531 2.132812 27.066406 3.707031 27.066406 5.640625 L 27.066406 22.113281 C 24.570312 20.488281 21.6875 20.027344 21.511719 20.003906 C 21.417969 19.992188 21.324219 19.992188 21.226562 20.003906 C 19.851562 20.25 19.003906 20.78125 18.71875 21.59375 C 18.355469 22.617188 19.085938 23.5 19.226562 23.652344 C 22.699219 26.9375 23.605469 29.753906 23.617188 29.753906 C 24.265625 33.390625 27.550781 35.910156 28.292969 36.441406 C 30.082031 39.042969 30.425781 42.117188 30.472656 43.5625 L 30.175781 43.5625 C 29.695312 43.5625 29.292969 43.964844 29.292969 44.445312 L 29.292969 49.78125 C 29.292969 50.261719 29.695312 50.664062 30.175781 50.664062 C 30.660156 50.664062 31.058594 50.261719 31.058594 49.78125 L 31.058594 45.328125 L 46.625 45.328125 L 46.625 74.058594 C 46.625 74.539062 47.023438 74.941406 47.507812 74.941406 C 47.992188 74.941406 48.390625 74.539062 48.390625 74.058594 L 48.390625 44.445312 C 48.390625 43.964844 47.992188 43.5625 47.507812 43.5625 L 47.214844 43.5625 L 47.214844 40.703125 C 47.214844 39.5 47.402344 38.324219 47.777344 37.195312 L 49.191406 32.96875 C 49.628906 31.636719 49.851562 30.257812 49.851562 28.90625 L 49.851562 8.785156 C 49.851562 7.851562 49.472656 6.945312 48.828125 6.3125 C 48.167969 5.652344 47.261719 5.273438 46.332031 5.273438 Z M 48.074219 28.90625 C 48.074219 30.082031 47.882812 31.261719 47.507812 32.414062 L 46.105469 36.628906 C 45.671875 37.9375 45.449219 39.300781 45.449219 40.703125 L 45.449219 43.5625 L 32.25 43.5625 C 32.203125 41.902344 31.8125 38.335938 29.648438 35.285156 C 29.589844 35.203125 29.503906 35.121094 29.421875 35.0625 C 29.386719 35.039062 25.949219 32.695312 25.335938 29.339844 C 25.300781 29.210938 24.335938 26.042969 20.5 22.429688 C 20.464844 22.394531 20.378906 22.230469 20.378906 22.183594 C 20.414062 22.125 20.664062 21.910156 21.394531 21.769531 C 22.21875 21.921875 26.515625 22.828125 28.246094 25.691406 C 28.492188 26.101562 29.046875 26.242188 29.457031 25.984375 C 29.871094 25.738281 30.011719 25.183594 29.753906 24.773438 C 29.480469 24.335938 29.175781 23.9375 28.835938 23.570312 L 28.835938 5.640625 C 28.835938 4.675781 29.613281 3.898438 30.578125 3.898438 C 31.542969 3.898438 32.320312 4.675781 32.320312 5.640625 L 32.320312 12.621094 C 32.320312 13.105469 32.71875 13.503906 33.203125 13.503906 C 33.683594 13.503906 34.085938 13.105469 34.085938 12.621094 L 34.085938 3.683594 C 34.085938 2.71875 34.863281 1.941406 35.828125 1.941406 C 36.792969 1.941406 37.570312 2.71875 37.570312 3.683594 L 37.570312 12.621094 C 37.570312 13.105469 37.972656 13.503906 38.453125 13.503906 C 38.9375 13.503906 39.335938 13.105469 39.335938 12.621094 L 39.335938 5.640625 C 39.335938 4.675781 40.113281 3.898438 41.078125 3.898438 C 42.042969 3.898438 42.820312 4.675781 42.820312 5.640625 L 42.820312 8.773438 C 42.820312 8.773438 42.820312 8.785156 42.820312 8.785156 L 42.820312 12.621094 C 42.820312 12.738281 42.84375 12.855469 42.890625 12.964844 C 43.023438 13.28125 43.339844 13.503906 43.703125 13.503906 C 44.1875 13.503906 44.589844 13.105469 44.589844 12.621094 L 44.589844 8.773438 C 44.601562 7.816406 45.375 7.039062 46.332031 7.039062 C 46.789062 7.039062 47.238281 7.230469 47.566406 7.558594 C 47.882812 7.875 48.074219 8.324219 48.074219 8.785156 Z M 48.074219 28.90625 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 30.1875 53.230469 C 29.707031 53.230469 29.304688 53.628906 29.304688 54.113281 L 29.304688 74.058594 C 29.304688 74.539062 29.707031 74.941406 30.1875 74.941406 C 30.671875 74.941406 31.070312 74.539062 31.070312 74.058594 L 31.070312 54.113281 C 31.070312 53.628906 30.671875 53.230469 30.1875 53.230469 Z M 30.1875 53.230469 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 74.140625 20.828125 C 73.609375 20.285156 72.867188 19.980469 72.105469 19.980469 C 71.703125 19.980469 71.328125 20.0625 70.972656 20.214844 C 70.84375 18.757812 69.621094 17.613281 68.136719 17.613281 C 67.664062 17.613281 67.21875 17.742188 66.828125 17.945312 C 66.40625 16.882812 65.378906 16.140625 64.167969 16.140625 C 62.96875 16.140625 61.929688 16.894531 61.507812 17.945312 C 61.117188 17.742188 60.671875 17.613281 60.199219 17.613281 C 58.621094 17.613281 57.339844 18.898438 57.339844 20.476562 L 57.339844 32.53125 C 55.492188 31.449219 53.511719 31.128906 53.394531 31.105469 C 53.300781 31.09375 53.207031 31.09375 53.113281 31.105469 C 51.980469 31.308594 51.289062 31.753906 51.050781 32.449219 C 50.816406 33.121094 51.109375 33.804688 51.5 34.238281 C 54.066406 36.652344 54.75 38.722656 54.75 38.722656 C 55.242188 41.503906 57.703125 43.433594 58.339844 43.894531 C 59.550781 45.683594 59.847656 47.777344 59.917969 48.910156 L 59.636719 48.910156 C 59.152344 48.910156 58.753906 49.308594 58.753906 49.792969 L 58.753906 55.113281 C 58.753906 55.597656 59.152344 55.996094 59.636719 55.996094 C 60.117188 55.996094 60.519531 55.597656 60.519531 55.113281 L 60.519531 50.675781 L 72.410156 50.675781 L 72.410156 74.058594 C 72.410156 74.539062 72.808594 74.941406 73.292969 74.941406 C 73.777344 74.941406 74.175781 74.539062 74.175781 74.058594 L 74.175781 49.78125 C 74.175781 49.296875 73.777344 48.898438 73.292969 48.898438 L 73 48.898438 L 73 46.953125 C 73 46.070312 73.140625 45.199219 73.410156 44.375 L 74.46875 41.183594 C 74.800781 40.148438 74.976562 39.101562 74.976562 38.054688 L 74.976562 22.839844 C 74.976562 22.074219 74.671875 21.335938 74.140625 20.828125 Z M 73.210938 38.042969 C 73.210938 38.902344 73.070312 39.773438 72.796875 40.621094 L 71.738281 43.800781 C 71.398438 44.8125 71.230469 45.859375 71.230469 46.941406 L 71.230469 48.886719 L 61.683594 48.886719 C 61.613281 47.53125 61.273438 44.953125 59.695312 42.726562 C 59.636719 42.644531 59.550781 42.5625 59.46875 42.503906 C 59.445312 42.492188 56.914062 40.773438 56.46875 38.300781 C 56.433594 38.195312 55.714844 35.804688 52.816406 33.003906 C 52.910156 32.957031 53.054688 32.90625 53.277344 32.859375 C 53.972656 32.992188 57.03125 33.683594 58.269531 35.710938 C 58.515625 36.121094 59.070312 36.265625 59.480469 36.003906 C 59.894531 35.757812 60.035156 35.203125 59.777344 34.792969 C 59.589844 34.472656 59.351562 34.191406 59.117188 33.921875 L 59.117188 20.464844 C 59.117188 19.851562 59.613281 19.367188 60.210938 19.367188 C 60.8125 19.367188 61.308594 19.863281 61.308594 20.464844 L 61.308594 26.621094 C 61.308594 27.105469 61.707031 27.503906 62.191406 27.503906 C 62.671875 27.503906 63.074219 27.105469 63.074219 26.621094 L 63.074219 18.992188 C 63.074219 18.378906 63.566406 17.894531 64.167969 17.894531 C 64.769531 17.894531 65.261719 18.390625 65.261719 18.992188 L 65.261719 26.621094 C 65.261719 27.105469 65.664062 27.503906 66.144531 27.503906 C 66.628906 27.503906 67.027344 27.105469 67.027344 26.621094 L 67.027344 20.464844 C 67.027344 19.851562 67.523438 19.367188 68.125 19.367188 C 68.722656 19.367188 69.21875 19.863281 69.21875 20.464844 L 69.21875 22.828125 C 69.21875 22.828125 69.21875 22.839844 69.21875 22.839844 L 69.21875 26.621094 C 69.21875 26.738281 69.242188 26.855469 69.289062 26.960938 C 69.417969 27.28125 69.738281 27.503906 70.101562 27.503906 C 70.585938 27.503906 70.984375 27.105469 70.984375 26.621094 L 70.984375 22.839844 C 70.984375 22.242188 71.480469 21.746094 72.078125 21.746094 C 72.375 21.746094 72.644531 21.863281 72.855469 22.074219 C 73.058594 22.277344 73.175781 22.558594 73.175781 22.839844 L 73.175781 38.042969 Z M 73.210938 38.042969 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 59.625 58.363281 C 59.140625 58.363281 58.738281 58.765625 58.738281 59.246094 L 58.738281 74.058594 C 58.738281 74.539062 59.140625 74.941406 59.625 74.941406 C 60.105469 74.941406 60.507812 74.539062 60.507812 74.058594 L 60.507812 59.246094 C 60.507812 58.765625 60.117188 58.363281 59.625 58.363281 Z M 59.625 58.363281 fill-opacity1 fill-rulenonzero>/path>path fill#000000 dM 21.289062 33.214844 C 20.886719 33.214844 20.511719 33.296875 20.15625 33.449219 C 20.027344 31.988281 18.804688 30.847656 17.320312 30.847656 C 16.847656 30.847656 16.402344 30.976562 16.011719 31.175781 C 15.589844 30.117188 14.5625 29.375 13.351562 29.375 C 12.140625 29.375 11.113281 30.128906 10.691406 31.175781 C 10.300781 30.976562 9.855469 30.847656 9.382812 30.847656 C 7.804688 30.847656 6.523438 32.132812 6.523438 33.707031 L 6.523438 45.765625 C 4.675781 44.683594 2.695312 44.363281 2.578125 44.339844 C 2.484375 44.328125 2.390625 44.328125 2.296875 44.339844 C 1.164062 44.539062 0.484375 44.988281 0.234375 45.683594 C 0 46.355469 0.292969 47.035156 0.683594 47.472656 C 3.238281 49.886719 3.933594 51.957031 3.933594 51.957031 C 4.425781 54.738281 6.886719 56.667969 7.523438 57.128906 C 8.734375 58.917969 9.03125 61.011719 9.101562 62.144531 L 8.808594 62.144531 C 8.324219 62.144531 7.925781 62.542969 7.925781 63.027344 L 7.925781 74.058594 C 7.925781 74.539062 8.324219 74.941406 8.808594 74.941406 C 9.289062 74.941406 9.691406 74.539062 9.691406 74.058594 L 9.691406 63.898438 L 21.582031 63.898438 L 21.582031 74.058594 C 21.582031 74.539062 21.980469 74.941406 22.464844 74.941406 C 22.949219 74.941406 23.347656 74.539062 23.347656 74.058594 L 23.347656 63.015625 C 23.347656 62.53125 22.949219 62.132812 22.464844 62.132812 L 22.171875 62.132812 L 22.171875 60.1875 C 22.171875 59.304688 22.3125 58.433594 22.582031 57.609375 L 23.640625 54.417969 C 23.972656 53.382812 24.148438 52.335938 24.148438 51.289062 L 24.148438 36.074219 C 24.148438 35.308594 23.84375 34.566406 23.3125 34.0625 C 22.792969 33.519531 22.050781 33.214844 21.289062 33.214844 Z M 22.394531 51.277344 C 22.394531 52.136719 22.253906 53.007812 21.980469 53.855469 L 20.921875 57.03125 C 20.582031 58.046875 20.414062 59.09375 20.414062 60.175781 L 20.414062 62.121094 L 10.867188 62.121094 C 10.796875 60.765625 10.457031 58.1875 8.878906 55.960938 C 8.820312 55.878906 8.734375 55.796875 8.640625 55.738281 C 8.617188 55.726562 6.097656 54.019531 5.652344 51.535156 C 5.617188 51.429688 4.898438 49.039062 2 46.234375 C 2.097656 46.1875 2.238281 46.140625 2.460938 46.09375 C 3.15625 46.222656 6.214844 46.917969 7.453125 48.945312 C 7.699219 49.355469 8.253906 49.496094 8.664062 49.238281 C 9.078125 48.992188 9.21875 48.4375 8.960938 48.027344 C 8.773438 47.707031 8.535156 47.414062 8.300781 47.15625 L 8.300781 33.707031 C 8.300781 33.097656 8.796875 32.613281 9.394531 32.613281 C 9.996094 32.613281 10.492188 33.109375 10.492188 33.707031 L 10.492188 39.867188 C 10.492188 40.347656 10.890625 40.75 11.375 40.75 C 11.855469 40.75 12.257812 40.347656 12.257812 39.867188 L 12.257812 32.238281 C 12.257812 31.625 12.75 31.140625 13.351562 31.140625 C 13.953125 31.140625 14.445312 31.636719 14.445312 32.238281 L 14.445312 39.867188 C 14.445312 40.347656 14.847656 40.75 15.328125 40.75 C 15.8125 40.75 16.210938 40.347656 16.210938 39.867188 L 16.210938 33.707031 C 16.210938 33.097656 16.707031 32.613281 17.308594 32.613281 C 17.90625 32.613281 18.402344 33.109375 18.402344 33.707031 L 18.402344 39.855469 C 18.402344 39.972656 18.425781 40.089844 18.472656 40.195312 C 18.601562 40.515625 18.921875 40.738281 19.285156 40.738281 C 19.769531 40.738281 20.167969 40.335938 20.167969 39.855469 L 20.167969 36.0625 C 20.167969 35.464844 20.664062 34.96875 21.265625 34.96875 C 21.558594 34.96875 21.828125 35.085938 22.039062 35.296875 C 22.242188 35.5 22.359375 35.78125 22.359375 36.0625 L 22.359375 51.277344 Z M 22.394531 51.277344 fill-opacity1 fill-rulenonzero>/path>/svg> /div> /div> /div> /div> div classelementor-element elementor-element-11a241f4 elementor-widget elementor-widget-heading data-id11a241f4 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>Bequests/h3> /div> /div> div classelementor-element elementor-element-62199899 elementor-widget elementor-widget-text-editor data-id62199899 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Leave a legacy and support education with a planned gift. An attorney can help you explore options like bequests in your will that can benefit both the Foundation and your loved ones./p> /div> /div> div classelementor-element elementor-element-78db683d elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-center elementor-invisible elementor-widget elementor-widget-button data-id78db683d data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/contact-us/> span classelementor-button-content-wrapper> span classelementor-button-text>Contact Us/span> /span> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-7ea2b642 e-flex e-con-boxed e-con e-child data-id7ea2b642 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-78bbff3a elementor-view-default elementor-widget elementor-widget-icon data-id78bbff3a data-element_typewidget data-widget_typeicon.default> div classelementor-widget-container> div classelementor-icon-wrapper> div classelementor-icon> svg xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink width100 viewBox0 0 75 74.999997 height100 preserveAspectRatioxMidYMid meet>path fill#100f0d dM 46.648438 29.710938 C 46.566406 29.757812 46.492188 29.816406 46.429688 29.886719 C 44.320312 31.578125 41.785156 33.320312 38.722656 35.085938 C 37.117188 34.160156 35.652344 33.238281 34.320312 32.328125 C 34.277344 32.289062 34.226562 32.253906 34.175781 32.226562 C 30.957031 30.011719 28.507812 27.859375 26.652344 25.824219 C 26.585938 25.714844 26.5 25.621094 26.398438 25.542969 C 21.835938 20.410156 21.035156 16.050781 21.136719 13.363281 C 21.277344 9.679688 23.277344 6.398438 26.230469 5.011719 C 27.535156 4.398438 28.792969 4.152344 29.96875 4.152344 C 34.476562 4.152344 37.8125 7.730469 37.984375 7.921875 C 38.175781 8.128906 38.441406 8.25 38.722656 8.25 C 39.003906 8.25 39.273438 8.128906 39.460938 7.921875 C 39.683594 7.683594 44.933594 2.050781 51.21875 5.011719 C 54.171875 6.398438 56.171875 9.679688 56.3125 13.363281 C 56.414062 16.117188 55.574219 20.625 50.710938 25.917969 C 50.613281 25.988281 50.53125 26.078125 50.464844 26.183594 C 49.390625 27.324219 48.128906 28.503906 46.648438 29.710938 Z M 42.828125 45.75 C 45.386719 45.75 47.472656 47.84375 47.472656 50.414062 C 47.472656 52.988281 45.386719 55.078125 42.828125 55.078125 C 42.28125 55.078125 41.757812 54.984375 41.269531 54.808594 C 40.972656 54.660156 40.667969 54.511719 40.351562 54.355469 C 39.046875 53.53125 38.179688 52.074219 38.179688 50.414062 C 38.179688 47.84375 40.265625 45.75 42.828125 45.75 Z M 3.023438 45.007812 C 3.023438 41.84375 5.589844 39.265625 8.746094 39.265625 C 11.902344 39.265625 14.46875 41.84375 14.46875 45.007812 C 14.46875 48.175781 11.902344 50.753906 8.746094 50.753906 C 5.589844 50.753906 3.023438 48.175781 3.023438 45.007812 Z M 66.238281 40.277344 C 69.15625 40.277344 71.53125 42.660156 71.53125 45.589844 C 71.53125 48.519531 69.15625 50.90625 66.238281 50.90625 C 63.316406 50.90625 60.941406 48.519531 60.941406 45.589844 C 60.941406 42.660156 63.316406 40.277344 66.238281 40.277344 Z M 69.339844 52.214844 C 71.816406 51.042969 73.53125 48.515625 73.53125 45.589844 C 73.53125 41.550781 70.257812 38.265625 66.238281 38.265625 C 62.222656 38.265625 58.953125 41.539062 58.941406 45.566406 C 55.445312 39.988281 53.210938 31.484375 52.382812 27.039062 C 57.542969 21.308594 58.429688 16.335938 58.3125 13.289062 C 58.144531 8.859375 55.691406 4.894531 52.070312 3.191406 C 45.886719 0.28125 40.617188 4.144531 38.726562 5.84375 C 36.839844 4.144531 31.585938 0.269531 25.378906 3.191406 C 21.757812 4.894531 19.304688 8.859375 19.136719 13.289062 C 19.023438 16.257812 19.859375 21.046875 24.664062 26.585938 C 21.996094 34.777344 19.574219 41.527344 16.425781 45.859375 C 16.453125 45.582031 16.472656 45.296875 16.472656 45.007812 C 16.472656 40.734375 13.007812 37.257812 8.746094 37.257812 C 4.488281 37.257812 1.023438 40.734375 1.023438 45.007812 C 1.023438 48.144531 2.886719 50.847656 5.554688 52.066406 C 5.296875 52.171875 5.042969 52.28125 4.800781 52.394531 C 1.917969 53.726562 0.0546875 56.679688 0.0546875 59.921875 L 0.0546875 74.261719 C 0.0546875 74.816406 0.503906 75.265625 1.058594 75.265625 C 1.609375 75.265625 2.058594 74.816406 2.058594 74.261719 L 2.058594 59.921875 C 2.058594 57.464844 3.464844 55.222656 5.636719 54.21875 C 6.8125 53.675781 8.230469 53.222656 9.855469 52.882812 C 17.917969 51.175781 21.695312 42.058594 26.222656 28.265625 C 26.914062 28.960938 27.671875 29.671875 28.496094 30.386719 C 25.480469 42.617188 21.980469 51.351562 18.882812 54.363281 C 18.6875 54.554688 18.578125 54.816406 18.578125 55.085938 L 18.578125 74.261719 C 18.578125 74.816406 19.027344 75.265625 19.582031 75.265625 C 20.132812 75.265625 20.582031 74.816406 20.582031 74.261719 L 20.582031 55.5 C 24.835938 50.976562 28.328125 39.253906 30.210938 31.796875 C 30.929688 32.363281 31.695312 32.933594 32.507812 33.507812 C 30.953125 38.4375 28.277344 49.128906 31.230469 57.125 L 31.230469 74.261719 C 31.230469 74.816406 31.675781 75.265625 32.230469 75.265625 C 32.785156 75.265625 33.230469 74.816406 33.230469 74.261719 L 33.230469 56.941406 C 33.230469 56.820312 33.210938 56.699219 33.164062 56.585938 C 30.40625 49.347656 32.898438 39.140625 34.242188 34.683594 C 35.226562 35.332031 36.273438 35.980469 37.386719 36.632812 C 35.90625 42.074219 33.695312 53.210938 39.355469 56.105469 C 39.707031 56.320312 40.082031 56.507812 40.472656 56.65625 C 46.324219 59.550781 47.472656 60.644531 47.472656 62.964844 L 47.472656 74.261719 C 47.472656 74.816406 47.921875 75.265625 48.472656 75.265625 C 49.027344 75.265625 49.476562 74.816406 49.476562 74.261719 L 49.476562 62.964844 C 49.476562 60.210938 48.167969 58.625 44.941406 56.742188 C 47.574219 55.851562 49.476562 53.351562 49.476562 50.414062 C 49.476562 46.734375 46.492188 43.742188 42.828125 43.742188 C 40.78125 43.742188 38.949219 44.671875 37.730469 46.136719 C 37.894531 43.300781 38.511719 40.09375 39.351562 37.042969 C 42.105469 35.472656 44.46875 33.90625 46.496094 32.371094 C 47.394531 36.652344 50.128906 48.304688 54.460938 54.832031 L 54.460938 74.261719 C 54.460938 74.816406 54.90625 75.265625 55.460938 75.265625 C 56.011719 75.265625 56.460938 74.816406 56.460938 74.261719 L 56.460938 54.523438 C 56.460938 54.320312 56.398438 54.121094 56.285156 53.953125 C 51.714844 47.28125 48.847656 33.925781 48.257812 30.972656 C 49.144531 30.238281 49.953125 29.507812 50.695312 28.789062 C 51.9375 34.601562 56.308594 51.667969 65.089844 52.902344 C 65.410156 52.953125 72.941406 54.179688 72.941406 60.816406 L 72.941406 74.261719 C 72.941406 74.816406 73.390625 75.265625 73.941406 75.265625 C 74.496094 75.265625 74.945312 74.816406 74.945312 74.261719 L 74.945312 60.816406 C 74.945312 56.351562 72.171875 53.660156 69.339844 52.214844 fill-opacity1 fill-rulenonzero>/path>path fill#100f0d dM 6.6875 60.058594 C 6.132812 60.058594 5.6875 60.507812 5.6875 61.0625 L 5.6875 74.261719 C 5.6875 74.816406 6.132812 75.265625 6.6875 75.265625 C 7.238281 75.265625 7.6875 74.816406 7.6875 74.261719 L 7.6875 61.0625 C 7.6875 60.507812 7.238281 60.058594 6.6875 60.058594 fill-opacity1 fill-rulenonzero>/path>/svg> /div> /div> /div> /div> div classelementor-element elementor-element-1e089b85 elementor-widget elementor-widget-heading data-id1e089b85 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>Corporations/h3> /div> /div> div classelementor-element elementor-element-2618bd3f elementor-widget elementor-widget-text-editor data-id2618bd3f data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Your business can make a lasting impact! Companies can support our mission through cash donations, product or service contributions, or by becoming an event sponsor./p> /div> /div> div classelementor-element elementor-element-7c3957c1 elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-center elementor-invisible elementor-widget elementor-widget-button data-id7c3957c1 data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/contact-us/> span classelementor-button-content-wrapper> span classelementor-button-text>Contact Us/span> /span> /a> /div> /div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-60ec6f4b e-flex e-con-boxed e-con e-parent data-id60ec6f4b data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-67230700 e-con-full e-flex e-con e-child data-id67230700 data-element_typecontainer> div classelementor-element elementor-element-627c41de elementor-widget elementor-widget-image data-id627c41de data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img decodingasync width500 height250 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Untitled-design-2.png classattachment-large size-large wp-image-2825 alt srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Untitled-design-2.png 500w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Untitled-design-2-300x150.png 300w sizes(max-width: 500px) 100vw, 500px /> /div> /div> div classelementor-element elementor-element-5e704877 elementor-widget elementor-widget-text-editor data-id5e704877 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>In honor of Sand Springs Education Foundation founder Montie Box, we have established the 1930 Montie Box Legacy Fund. Known affectionately as “Mr. Sand Springs,” Montie Box was instrumental in shaping the educational landscape of our community. His lifelong dedication ensured that local children and teachers received the support they needed./p>p>The 1930 Montie Box Legacy Fund, named for his birth year, will serve as a lasting tribute to his commitment and influence. This memorial fund is designed to perpetuate Montie’s vision and contributions, supporting educational initiatives and resources for generations to come. Through this fund, his legacy of service and dedication to the children of Sand Springs will continue to inspire and benefit the community he cherished so deeply./p> /div> /div> /div> div classelementor-element elementor-element-18656f06 e-con-full e-flex e-con e-child data-id18656f06 data-element_typecontainer> div classelementor-element elementor-element-308c58b0 e-con-full e-flex e-con e-child data-id308c58b0 data-element_typecontainer> div classelementor-element elementor-element-51a075d9 elementor-widget elementor-widget-heading data-id51a075d9 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>One-Time/h3> /div> /div> div classelementor-element elementor-element-1d592067 elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-center elementor-invisible elementor-widget elementor-widget-button data-id1d592067 data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://py.pl/Ambvu7tMp05 target_blank> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fab-paypal viewBox0 0 384 512 xmlnshttp://www.w3.org/2000/svg>path dM111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z>/path>/svg> /span> span classelementor-button-text>Donate/span> /span> /a> /div> /div> /div> /div> div classelementor-element elementor-element-5bf8088b e-flex e-con-boxed e-con e-child data-id5bf8088b data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-1dd09760 elementor-widget elementor-widget-heading data-id1dd09760 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>Monthly/h3> /div> /div> div classelementor-element elementor-element-1146c6cc elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-center elementor-invisible elementor-widget elementor-widget-button data-id1146c6cc data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://www.paypal.com/webapps/billing/plans/subscribe?plan_idP-68D77610A2896723LM2VGKTY target_blank> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fab-paypal viewBox0 0 384 512 xmlnshttp://www.w3.org/2000/svg>path dM111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z>/path>/svg> /span> span classelementor-button-text>Donate/span> /span> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-12dc8e72 e-flex e-con-boxed e-con e-child data-id12dc8e72 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-37225e0f elementor-widget elementor-widget-heading data-id37225e0f data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>Yearly/h3> /div> /div> div classelementor-element elementor-element-7a2520ed elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-center elementor-invisible elementor-widget elementor-widget-button data-id7a2520ed data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://www.paypal.com/webapps/billing/plans/subscribe?plan_idP-8VX96305BV493183LM2VGKDQ target_blank> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fab-paypal viewBox0 0 384 512 xmlnshttp://www.w3.org/2000/svg>path dM111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z>/path>/svg> /span> span classelementor-button-text>Donate/span> /span> /a> /div> /div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-277372c e-flex e-con-boxed e-con e-parent data-id277372c data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-a555669 elementor-widget__width-inherit elementor-widget elementor-widget-heading data-ida555669 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Fundraising Events:/h2> /div> /div> div classelementor-element elementor-element-757c858 elementor-widget__width-inherit elementor-widget elementor-widget-heading data-id757c858 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>Join Us to Make a Difference/h3> /div> /div> div classelementor-element elementor-element-ce421a9 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor data-idce421a9 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Beyond individual contributions, the Education Foundation brings the community together through engaging events. These experiences allow you to connect with like-minded supporters while raising critical funds for our educational initiatives./p> /div> /div> div classelementor-element elementor-element-eff17c6 e-con-full elementor-hidden-mobile elementor-hidden-tablet e-flex e-con e-child data-ideff17c6 data-element_typecontainer> div classelementor-element elementor-element-8be996e e-flex e-con-boxed e-con e-child data-id8be996e data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-ad4b5f9 elementor-cta--layout-image-right elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action data-idad4b5f9 data-element_typewidget data-widget_typecall-to-action.default> div classelementor-widget-container> div classelementor-cta> div classelementor-cta__bg-wrapper> div classelementor-cta__bg elementor-bg stylebackground-image: url(https://sandspringseducationfoundation.com/wp-content/uploads/2024/04/IMG_2545-683x1024.jpg); roleimg aria-labelSand Springs Education Foundation - Golf Tournament>/div> div classelementor-cta__bg-overlay>/div> /div> div classelementor-cta__content> h3 classelementor-cta__title elementor-cta__content-item elementor-content-item> Montie Box Golf Classic /h3> div classelementor-cta__description elementor-cta__content-item elementor-content-item> Join us September 29, 2025 for the Annual Montie Box Golf Classic. /div> div classelementor-cta__button-wrapper elementor-cta__content-item elementor-content-item > a classelementor-cta__button elementor-button elementor-size- hrefhttps://golf.sandspringseducationfoundation.com/> Get Involved /a> /div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-8e53c55 e-flex e-con-boxed e-con e-child data-id8e53c55 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-679a308 elementor-cta--layout-image-left elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action data-id679a308 data-element_typewidget data-widget_typecall-to-action.default> div classelementor-widget-container> div classelementor-cta> div classelementor-cta__bg-wrapper> div classelementor-cta__bg elementor-bg stylebackground-image: url(https://sandspringseducationfoundation.com/wp-content/uploads/2024/04/IMG_8904-Enhanced-NR-3-1.jpg); roleimg aria-labelSand Springs Education Foundation - Hall of Fame Banquet>/div> div classelementor-cta__bg-overlay>/div> /div> div classelementor-cta__content> h3 classelementor-cta__title elementor-cta__content-item elementor-content-item> Hall of Fame Banquet /h3> div classelementor-cta__description elementor-cta__content-item elementor-content-item> A night to honor and induct Sand Springs community members /div> div classelementor-cta__button-wrapper elementor-cta__content-item elementor-content-item > a classelementor-cta__button elementor-button elementor-size- hrefhttps://hof.sandspringseducationfoundation.com/2025> Get Involved /a> /div> /div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-3505a02 elementor-cta--skin-cover elementor-hidden-desktop elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action data-id3505a02 data-element_typewidget data-widget_typecall-to-action.default> div classelementor-widget-container> div classelementor-cta> div classelementor-cta__bg-wrapper> div classelementor-cta__bg elementor-bg stylebackground-image: url(https://sandspringseducationfoundation.com/wp-content/uploads/2024/04/IMG_2545-683x1024.jpg); roleimg aria-labelSand Springs Education Foundation - Golf Tournament>/div> div classelementor-cta__bg-overlay>/div> /div> div classelementor-cta__content> h2 classelementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow> Golf Classic /h2> div classelementor-cta__description elementor-cta__content-item elementor-content-item elementor-animated-item--grow> Join us September 29, 2025 for the Annual Montie Box Golf Classic. /div> div classelementor-cta__button-wrapper elementor-cta__content-item elementor-content-item elementor-animated-item--grow> a classelementor-cta__button elementor-button elementor-size- hrefhttps://golf.sandspringseducationfoundation.com/> Get Involved /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-0ed9183 elementor-cta--skin-cover elementor-hidden-desktop elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action data-id0ed9183 data-element_typewidget data-widget_typecall-to-action.default> div classelementor-widget-container> div classelementor-cta> div classelementor-cta__bg-wrapper> div classelementor-cta__bg elementor-bg stylebackground-image: url(https://sandspringseducationfoundation.com/wp-content/uploads/2024/04/IMG_8904-Enhanced-NR-3-1.jpg); roleimg aria-labelSand Springs Education Foundation - Hall of Fame Banquet>/div> div classelementor-cta__bg-overlay>/div> /div> div classelementor-cta__content> h2 classelementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow> Hall of Fame Banquet /h2> div classelementor-cta__description elementor-cta__content-item elementor-content-item elementor-animated-item--grow> A night to honor and induct Sand Springs community members /div> div classelementor-cta__button-wrapper elementor-cta__content-item elementor-content-item elementor-animated-item--grow> a classelementor-cta__button elementor-button elementor-size- hrefhttps://sandspringseducationfoundation.com/hall-of-fame-inductees/> Get Involved /a> /div> /div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-1df247b e-flex e-con-boxed e-con e-parent data-id1df247b data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-ea271c6 elementor-widget elementor-widget-heading data-idea271c6 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Grant Stories/h2> /div> /div> div classelementor-element elementor-element-6e35e16 e-con-full e-flex e-con e-child data-id6e35e16 data-element_typecontainer> div classelementor-element elementor-element-393d057 elementor-grid-tablet-3 elementor-widget__width-initial elementor-grid-3 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-card-shadow-yes elementor-posts__hover-gradient elementor-widget elementor-widget-posts data-id393d057 data-element_typewidget data-settings{"cards_row_gap":{"unit":"px","size":20,"sizes":},"cards_columns_tablet":"3","cards_columns":"3","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":}} data-widget_typeposts.cards> div classelementor-widget-container> div classelementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid> article classelementor-post elementor-grid-item post-1309 post type-post status-publish format-standard has-post-thumbnail hentry category-grants> div classelementor-post__card> a classelementor-post__thumbnail__link hrefhttps://sandspringseducationfoundation.com/tiny-photographers-capturing-the-world/ tabindex-1 >div classelementor-post__thumbnail>img decodingasync width1200 height628 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Pre-K-Cameras.png classattachment-full size-full wp-image-2501 altSand Springs Education Foundation - Charitable Giving Tulsa srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Pre-K-Cameras.png 1200w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Pre-K-Cameras-300x157.png 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Pre-K-Cameras-1024x536.png 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Pre-K-Cameras-768x402.png 768w sizes(max-width: 1200px) 100vw, 1200px />/div>/a> div classelementor-post__text> a classelementor-post__read-more hrefhttps://sandspringseducationfoundation.com/tiny-photographers-capturing-the-world/ aria-labelRead more about Tiny Photographers Capturing the World tabindex-1 > Full Story » /a> /div> /div> /article> article classelementor-post elementor-grid-item post-75 post type-post status-publish format-standard has-post-thumbnail hentry category-grants> div classelementor-post__card> a classelementor-post__thumbnail__link hrefhttps://sandspringseducationfoundation.com/nfaa-lights-up-stem/ tabindex-1 >div classelementor-post__thumbnail>img loadinglazy decodingasync width1200 height628 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/STEM.png classattachment-full size-full wp-image-2504 altSand Springs Education Foundation - Teacher STEM Grant Project srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/STEM.png 1200w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/STEM-300x157.png 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/STEM-1024x536.png 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/STEM-768x402.png 768w sizes(max-width: 1200px) 100vw, 1200px />/div>/a> div classelementor-post__text> a classelementor-post__read-more hrefhttps://sandspringseducationfoundation.com/nfaa-lights-up-stem/ aria-labelRead more about NFAA Lights Up STEM with SSEF Grant tabindex-1 > Full Story » /a> /div> /div> /article> article classelementor-post elementor-grid-item post-1263 post type-post status-publish format-standard has-post-thumbnail hentry category-grants> div classelementor-post__card> a classelementor-post__thumbnail__link hrefhttps://sandspringseducationfoundation.com/a-virtual-island-adventure/ tabindex-1 >div classelementor-post__thumbnail>img loadinglazy decodingasync width1200 height628 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Freshman-VR.png classattachment-full size-full wp-image-2499 altSand Springs Education Foundation - Teacher Funded Project srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Freshman-VR.png 1200w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Freshman-VR-300x157.png 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Freshman-VR-1024x536.png 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/Freshman-VR-768x402.png 768w sizes(max-width: 1200px) 100vw, 1200px />/div>/a> div classelementor-post__text> a classelementor-post__read-more hrefhttps://sandspringseducationfoundation.com/a-virtual-island-adventure/ aria-labelRead more about A Virtual Island Adventure tabindex-1 > Full Story » /a> /div> /div> /article> /div> /div> /div> /div> div classelementor-element elementor-element-1d22ae9 elementor-tablet-align-center elementor-mobile-align-center elementor-widget__width-inherit elementor-align-center elementor-invisible elementor-widget elementor-widget-button data-id1d22ae9 data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/grant-stories/> span classelementor-button-content-wrapper> span classelementor-button-text>See More/span> /span> /a> /div> /div> /div> /div> /div> div classelementor-element elementor-element-d01bddd e-flex e-con-boxed e-con e-parent data-idd01bddd data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-0a4f666 e-con-full e-flex e-con e-child data-id0a4f666 data-element_typecontainer> div classelementor-element elementor-element-4529e73 elementor-widget elementor-widget-heading data-id4529e73 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Sandite Hall of Fame Inductees/h2> /div> /div> div classelementor-element elementor-element-d435553 elementor-widget elementor-widget-text-editor data-idd435553 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Each year educators, business leaders, students & community members come together to honor notable Sandites and to raise money for the Sand Springs Education Foundation. Honored Sandites must have spent a specific amount of time in the Sand Springs School System. Nominees to be awarded are individuals who have made great strides in their personal and professional life and bring admiration to the term “Sandite”./p> /div> /div> div classelementor-element elementor-element-c8567eb elementor-tablet-align-left elementor-mobile-align-center elementor-widget__width-inherit elementor-align-left elementor-invisible elementor-widget elementor-widget-button data-idc8567eb data-element_typewidget data-settings{"_animation":"fadeIn","_animation_delay":200} data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://sandspringseducationfoundation.com/hall-of-fame-inductees/> span classelementor-button-content-wrapper> span classelementor-button-text>See More/span> /span> /a> /div> /div> /div> /div> div classelementor-element elementor-element-23b3bc7 elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel data-id23b3bc7 data-element_typewidget data-settings{"slides_to_show":"1","autoplay_speed":2500,"navigation":"both","autoplay":"yes","pause_on_hover":"yes","pause_on_interaction":"yes","infinite":"yes","effect":"slide","speed":500} data-widget_typeimage-carousel.default> div classelementor-widget-container> div classelementor-image-carousel-wrapper swiper roleregion aria-roledescriptioncarousel aria-labelImage Carousel dirltr> div classelementor-image-carousel swiper-wrapper swiper-image-stretch aria-liveoff> div classswiper-slide rolegroup aria-roledescriptionslide aria-label1 of 3>figure classswiper-slide-inner>img decodingasync classswiper-slide-image srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/DSC_0254.jpg altDSC_0254 />/figure>/div>div classswiper-slide rolegroup aria-roledescriptionslide aria-label2 of 3>figure classswiper-slide-inner>img decodingasync classswiper-slide-image srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/IMG_8904-Enhanced-NR-3-1.jpg altSand Springs Education Foundation - Hall of Fame Banquet />/figure>/div>div classswiper-slide rolegroup aria-roledescriptionslide aria-label3 of 3>figure classswiper-slide-inner>img decodingasync classswiper-slide-image srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/04/Sand-Springs-Education-Foundation.jpg altSand Springs Education Foundation - Hall of Fame Banquet Table />/figure>/div> /div> div classelementor-swiper-button elementor-swiper-button-prev rolebutton tabindex0> svg aria-hiddentrue classe-font-icon-svg e-eicon-chevron-left viewBox0 0 1000 1000 xmlnshttp://www.w3.org/2000/svg>path dM646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z>/path>/svg> /div> div classelementor-swiper-button elementor-swiper-button-next rolebutton tabindex0> svg aria-hiddentrue classe-font-icon-svg e-eicon-chevron-right viewBox0 0 1000 1000 xmlnshttp://www.w3.org/2000/svg>path dM696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z>/path>/svg> /div> div classswiper-pagination>/div> /div> /div> /div> /div> /div> div classelementor-element elementor-element-e40c7de e-flex e-con-boxed e-con e-parent data-ide40c7de data-element_typecontainer data-settings{"background_background":"gradient"}> div classe-con-inner> div classelementor-element elementor-element-3856f76 elementor-widget elementor-widget-heading data-id3856f76 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Thank you to Our Sponsors!/h2> /div> /div> div classelementor-element elementor-element-90be3b7 e-grid e-con-full e-con e-child data-id90be3b7 data-element_typecontainer> div classelementor-element elementor-element-62a5bd2 elementor-widget elementor-widget-image data-id62a5bd2 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://www.caseusa.com/ target_blank> img loadinglazy decodingasync width800 height800 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-1024x1024.webp classattachment-large size-large wp-image-3110 alt srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-1024x1024.webp 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-300x300.webp 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-150x150.webp 150w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-768x768.webp 768w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-1536x1536.webp 1536w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/CASE_LOGO_MASTER-02_r0clzy-2048x2048.webp 2048w sizes(max-width: 800px) 100vw, 800px /> /a> /div> /div> div classelementor-element elementor-element-a83fe1c elementor-widget elementor-widget-image data-ida83fe1c data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://www.ahb.bank/locations/sand-springs--adams-road-branch target_blank> img loadinglazy decodingasync width800 height237 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/american-heritage-bank-logo-6585ee58-1024x303.png classattachment-large size-large wp-image-3117 alt srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/american-heritage-bank-logo-6585ee58-1024x303.png 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/american-heritage-bank-logo-6585ee58-e1724687342882-300x88.png 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/american-heritage-bank-logo-6585ee58-768x228.png 768w sizes(max-width: 800px) 100vw, 800px /> /a> /div> /div> div classelementor-element elementor-element-4d2d8fb elementor-widget elementor-widget-image data-id4d2d8fb data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://ldkerns.com/ target_blank> img loadinglazy decodingasync width412 height95 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/ldk_fullColorLogo-med.png classattachment-large size-large wp-image-3111 alt srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/ldk_fullColorLogo-med.png 412w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/ldk_fullColorLogo-med-300x69.png 300w sizes(max-width: 412px) 100vw, 412px /> /a> /div> /div> div classelementor-element elementor-element-9effabc elementor-widget elementor-widget-image data-id9effabc data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width800 height419 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/SSEF-grants-featured-image-1024x536.png classattachment-large size-large wp-image-3112 alt srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/08/SSEF-grants-featured-image-1024x536.png 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/SSEF-grants-featured-image-300x157.png 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/SSEF-grants-featured-image-768x402.png 768w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/08/SSEF-grants-featured-image.png 1200w sizes(max-width: 800px) 100vw, 800px /> /div> /div> /div> /div> /div> /div> /div> /main> footer data-elementor-typefooter data-elementor-id26 classelementor elementor-26 elementor-location-footer data-elementor-post-typeelementor_library> div classelementor-element elementor-element-16ab3e05 e-flex e-con-boxed e-con e-parent data-id16ab3e05 data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-25f73892 e-con-full e-flex e-con e-child data-id25f73892 data-element_typecontainer> div classelementor-element elementor-element-655ffba elementor-widget elementor-widget-image data-id655ffba data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://sandspringseducationfoundation.com/> img width800 height196 srchttps://sandspringseducationfoundation.com/wp-content/uploads/2024/07/SSEF-Logo-2024-copy-e1722436464213-1024x251.png classattachment-large size-large wp-image-1647 alt srcsethttps://sandspringseducationfoundation.com/wp-content/uploads/2024/07/SSEF-Logo-2024-copy-e1722436464213-1024x251.png 1024w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/07/SSEF-Logo-2024-copy-e1722436464213-300x74.png 300w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/07/SSEF-Logo-2024-copy-e1722436464213-768x189.png 768w, https://sandspringseducationfoundation.com/wp-content/uploads/2024/07/SSEF-Logo-2024-copy-e1722436464213.png 1446w sizes(max-width: 800px) 100vw, 800px /> /a> /div> /div> div classelementor-element elementor-element-6ed1edb elementor-widget elementor-widget-text-editor data-id6ed1edb data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>501(c)(3) Nonprofit Organization #73-1356145/p> /div> /div> div classelementor-element elementor-element-589da4e8 e-grid-align-left e-grid-align-tablet-left e-grid-align-mobile-center elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons data-id589da4e8 data-element_typewidget data-widget_typesocial-icons.default> div classelementor-widget-container> div classelementor-social-icons-wrapper elementor-grid rolelist> span classelementor-grid-item rolelistitem> a classelementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-3f1b7ac hrefhttps://www.facebook.com/p/Sand-Springs-Education-Foundation-100063640217669/ target_blank> span classelementor-screen-only>Facebook-f/span> svg aria-hiddentrue classe-font-icon-svg e-fab-facebook-f viewBox0 0 320 512 xmlnshttp://www.w3.org/2000/svg>path dM279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z>/path>/svg> /a> /span> span classelementor-grid-item rolelistitem> a classelementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-5c0ce3c hrefhttps://www.youtube.com/channel/UChIrZKYWej_GSBe8QCNw_mQ target_blank> span classelementor-screen-only>Youtube/span> svg aria-hiddentrue classe-font-icon-svg e-fab-youtube viewBox0 0 576 512 xmlnshttp://www.w3.org/2000/svg>path dM549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z>/path>/svg> /a> /span> /div> /div> /div> /div> div classelementor-element elementor-element-4380c549 e-con-full e-flex e-con e-child data-id4380c549 data-element_typecontainer> div classelementor-element elementor-element-400eeede elementor-widget elementor-widget-heading data-id400eeede data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h6 classelementor-heading-title elementor-size-default>Quick Links/h6> /div> /div> div classelementor-element elementor-element-52a6b6e8 elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu data-id52a6b6e8 data-element_typewidget data-settings{"layout":"vertical","submenu_icon":{"value":"<svg class\"e-font-icon-svg e-fas-caret-down\" viewBox\"0 0 320 512\" xmlns\"http:\/\/www.w3.org\/2000\/svg\"><path d\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"><\/path><\/svg>","library":"fa-solid"}} data-widget_typenav-menu.default> div classelementor-widget-container> nav aria-labelMenu classelementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none> ul idmenu-1-52a6b6e8 classelementor-nav-menu sm-vertical>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item menu-item-80>a hrefhttps://sandspringseducationfoundation.com/ aria-currentpage classelementor-item elementor-item-active>Home/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-79>a hrefhttps://sandspringseducationfoundation.com/about-us/ classelementor-item>About Us/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-441>a hrefhttps://sandspringseducationfoundation.com/support/ classelementor-item>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1209>a hrefhttps://sandspringseducationfoundation.com/grant-stories/ classelementor-item>Grant Stories/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1031>a hrefhttps://sandspringseducationfoundation.com/educator-resources-2/ classelementor-item>Educator Resources/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-87>a hrefhttps://sandspringseducationfoundation.com/contact-us/ classelementor-item>Contact/a>/li>/ul> /nav> nav classelementor-nav-menu--dropdown elementor-nav-menu__container aria-hiddentrue> ul idmenu-2-52a6b6e8 classelementor-nav-menu sm-vertical>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-40 current_page_item menu-item-80>a hrefhttps://sandspringseducationfoundation.com/ aria-currentpage classelementor-item elementor-item-active tabindex-1>Home/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-79>a hrefhttps://sandspringseducationfoundation.com/about-us/ classelementor-item tabindex-1>About Us/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-441>a hrefhttps://sandspringseducationfoundation.com/support/ classelementor-item tabindex-1>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1209>a hrefhttps://sandspringseducationfoundation.com/grant-stories/ classelementor-item tabindex-1>Grant Stories/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-1031>a hrefhttps://sandspringseducationfoundation.com/educator-resources-2/ classelementor-item tabindex-1>Educator Resources/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-87>a hrefhttps://sandspringseducationfoundation.com/contact-us/ classelementor-item tabindex-1>Contact/a>/li>/ul> /nav> /div> /div> /div> div classelementor-element elementor-element-484eb7ce e-con-full e-flex e-con e-child data-id484eb7ce data-element_typecontainer> div classelementor-element elementor-element-7244178 elementor-widget elementor-widget-heading data-id7244178 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h6 classelementor-heading-title elementor-size-default>Get In Touch/h6> /div> /div> div classelementor-element elementor-element-fcb13e5 elementor-widget elementor-widget-text-editor data-idfcb13e5 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>strong>Sand Springs Education Foundation/strong>br />P.O. Box 1541br />Sand Springs, OK 74063br />Phone: span stylecolor: #000000;>a stylecolor: #000000; hreftel:918-215-8884>918-215-8884/a>/span>br />Email: span stylecolor: #000000;>a stylecolor: #000000; hrefmailto:ssef@att.net>ssef@att.net/a>/span>/p> /div> /div> /div> /div> /div> div classelementor-element elementor-element-10af7b73 e-flex e-con-boxed e-con e-parent data-id10af7b73 data-element_typecontainer data-settings{"background_background":"classic"}> div classe-con-inner> div classelementor-element elementor-element-3af830f4 elementor-widget elementor-widget-heading data-id3af830f4 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> p classelementor-heading-title elementor-size-default>© All Rights Reserved Sand Springs Education Foundation/p> /div> /div> /div> /div> div classelementor-element elementor-element-23ada77 elementor-hidden-desktop elementor-hidden-tablet e-flex e-con-boxed e-con e-parent data-id23ada77 data-element_typecontainer data-settings{"sticky":"bottom","sticky_on":"desktop","tablet","mobile","sticky_offset":0,"sticky_effects_offset":0,"sticky_anchor_link_offset":0}> div classe-con-inner> div classelementor-element elementor-element-a06b542 e-con-full e-flex e-con e-child data-ida06b542 data-element_typecontainer> div classelementor-element elementor-element-8257267 e-con-full e-flex e-con e-child data-id8257267 data-element_typecontainer> div classelementor-element elementor-element-c8471b0 elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button data-idc8471b0 data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm href#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjMxMDQiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D> span classelementor-button-content-wrapper> span classelementor-button-icon> svg aria-hiddentrue classe-font-icon-svg e-fab-cc-paypal viewBox0 0 576 512 xmlnshttp://www.w3.org/2000/svg>path dM186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z>/path>/svg> /span> span classelementor-button-text>Donate/br>Now/span> /span> /a> /div> /div> /div> /div> div classelementor-element elementor-element-c37de27 e-con-full e-flex e-con e-child data-idc37de27 data-element_typecontainer> div classelementor-element elementor-element-b7a2e7f elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button data-idb7a2e7f data-element_typewidget data-widget_typebutton.default> div classelementor-widget-container> div classelementor-button-wrapper> a classelementor-button elementor-button-link elementor-size-sm hrefhttps://golf.sandspringseducationfoundation.com/> span classelementor-button-content-wrapper> span classelementor-button-text>2025 Golfbr />Tournament/span> /span> /a> /div> /div> /div> /div> /div> /div> /div> /footer> script typespeculationrules>{prefetch:{source:document,where:{and:{href_matches:\/*},{not:{href_matches:\/wp-*.php,\/wp-admin\/*,\/wp-content\/uploads\/*,\/wp-content\/*,\/wp-content\/plugins\/*,\/wp-content\/themes\/hello-elementor\/*,\/*\\?(.+)}},{not:{selector_matches:arel~\nofollow\}},{not:{selector_matches:.no-prefetch, .no-prefetch a}}},eagerness:conservative}}/script> div data-elementor-typepopup data-elementor-id287 classelementor elementor-287 elementor-location-popup data-elementor-settings{"entrance_animation":"slideInDown","exit_animation":"slideInDown","entrance_animation_duration":{"unit":"px","size":1.2,"sizes":},"a11y_navigation":"yes","triggers":,"timing":} data-elementor-post-typeelementor_library> div classelementor-element elementor-element-3f7a1f2f e-flex e-con-boxed elementor-invisible e-con e-parent data-id3f7a1f2f data-element_typecontainer data-settings{"background_background":"classic","animation":"slideInDown"}> div classe-con-inner> div classelementor-element elementor-element-1ad35126 e-flex e-con-boxed e-con e-child data-id1ad35126 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-58fd8075 elementor-widget__width-inherit elementor-widget elementor-widget-heading data-id58fd8075 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Search/h2> /div> /div> div classelementor-element elementor-element-2bd130b elementor-search-form--skin-minimal elementor-widget elementor-widget-search-form data-id2bd130b data-element_typewidget data-settings{"skin":"minimal"} data-widget_typesearch-form.default> div classelementor-widget-container> search rolesearch> form classelementor-search-form actionhttps://sandspringseducationfoundation.com methodget> div classelementor-search-form__container> label classelementor-screen-only forelementor-search-form-2bd130b>Search/label> div classelementor-search-form__icon> div classe-font-icon-svg-container>svg aria-hiddentrue classe-font-icon-svg e-fas-search viewBox0 0 512 512 xmlnshttp://www.w3.org/2000/svg>path dM505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z>/path>/svg>/div> span classelementor-screen-only>Search/span> /div> input idelementor-search-form-2bd130b placeholder classelementor-search-form__input typesearch names value> /div> /form> /search> /div> /div> div classelementor-element elementor-element-707192dd e-flex e-con-boxed e-con e-child data-id707192dd data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-6702cb04 e-con-full e-flex e-con e-child data-id6702cb04 data-element_typecontainer> div classelementor-element elementor-element-5022cb3f e-con-full e-flex e-con e-child data-id5022cb3f data-element_typecontainer> div classelementor-element elementor-element-50db16a9 elementor-widget__width-inherit elementor-widget elementor-widget-heading data-id50db16a9 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Quicklinks/h2> /div> /div> div classelementor-element elementor-element-ac4c21 quicklinks elementor-widget elementor-widget-text-editor data-idac4c21 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/>Home/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/?page_id52>Who We Are/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/?page_id439>Get Involved/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/?page_id1196>Grants/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/?page_id68>Contact Us/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/?page_id439>Give A Gift/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/hall-of-fame-inductees/>Hall of Fame/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://sandspringseducationfoundation.com/?page_id2439>Montie Box Golf Classic/a>/span>/strong>/p>p>strong>span stylecolor: #000000;>a stylecolor: #000000; hrefhttps://www.sandites.org/ target_blank relnoopener>Sand Springs Public Schools/a>/span>/strong>/p> /div> /div> /div> div classelementor-element elementor-element-4cd90a8a e-con-full e-flex e-con e-child data-id4cd90a8a data-element_typecontainer> div classelementor-element elementor-element-4a9694c7 elementor-widget__width-inherit elementor-widget elementor-widget-heading data-id4a9694c7 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>Get In Touch/h2> /div> /div> div classelementor-element elementor-element-4398cc7e elementor-button-align-stretch elementor-widget elementor-widget-form data-id4398cc7e data-element_typewidget data-settings{"step_next_label":"Next","step_previous_label":"Previous","button_width":"100","step_type":"number_text","step_icon_shape":"circle"} data-widget_typeform.default> div classelementor-widget-container> form classelementor-form methodpost nameNew Form> input typehidden namepost_id value287/> input typehidden nameform_id value4398cc7e/> input typehidden namereferer_title valuePage not found | Sand Springs Education Foundation /> div classelementor-form-fields-wrapper elementor-labels-> div classelementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100> label forform-field-name classelementor-field-label elementor-screen-only> Name /label> input size1 typetext nameform_fieldsname idform-field-name classelementor-field elementor-size-sm elementor-field-textual placeholderName> /div> div classelementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required> label forform-field-email classelementor-field-label elementor-screen-only> Email /label> input size1 typeemail nameform_fieldsemail idform-field-email classelementor-field elementor-size-sm elementor-field-textual placeholderEmail requiredrequired> /div> div classelementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100> label forform-field-message classelementor-field-label elementor-screen-only> Message /label> textarea classelementor-field-textual elementor-field elementor-size-sm nameform_fieldsmessage idform-field-message rows4 placeholderMessage>/textarea> /div> div classelementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons> button classelementor-button elementor-size-sm typesubmit> span classelementor-button-content-wrapper> span classelementor-button-text>Send/span> /span> /button> /div> /div> /form> /div> /div> /div> /div> /div> /div> /div> /div> /div> /div> /div> div data-elementor-typepopup data-elementor-id3104 classelementor elementor-3104 elementor-location-popup data-elementor-settings{"a11y_navigation":"yes","timing":} data-elementor-post-typeelementor_library> div classelementor-element elementor-element-067d315 e-flex e-con-boxed e-con e-parent data-id067d315 data-element_typecontainer> div classe-con-inner> div classelementor-element elementor-element-632caeb elementor-widget elementor-widget-shortcode data-id632caeb data-element_typewidget data-widget_typeshortcode.default> div classelementor-widget-container> div classelementor-shortcode>div classforminator-ui forminator-custom-form forminator-custom-form-3103 forminator-design--default forminator-custom forminator_ajax data-forminator-render0 data-formforminator-module-3103 data-uid68eea469e2ac7>br/>/div>form idforminator-module-3103 classforminator-ui forminator-custom-form forminator-custom-form-3103 forminator-design--default forminator-custom forminator_ajax methodpost data-forminator-render0 data-form-id3103 data-designdefault data-color-optiondefault data-gridcustom styledisplay: none; data-uid68eea469e2ac7 >div rolealert aria-livepolite classforminator-response-message forminator-error aria-hiddentrue>/div>div classforminator-row>div idname-1 classforminator-field-name forminator-col forminator-col-6 >div classforminator-field>label forforminator-field-name-1_68eea469e2ac7 idforminator-field-name-1_68eea469e2ac7-label classforminator-label>Name span classforminator-required>*/span>/label>input typetext namename-1 value placeholderE.g. John Doe idforminator-field-name-1_68eea469e2ac7 classforminator-input forminator-name--field aria-requiredtrue />/div>/div>div idname-2 classforminator-field-name forminator-col forminator-col-6 >div classforminator-field>label forforminator-field-name-2_68eea469e2ac7 idforminator-field-name-2_68eea469e2ac7-label classforminator-label>Dedicate this donation:/label>input typetext namename-2 value placeholderIn honor of... idforminator-field-name-2_68eea469e2ac7 classforminator-input forminator-name--field aria-requiredfalse />/div>/div>/div>div classforminator-row>div idemail-1 classforminator-field-email forminator-col forminator-col-6 >div classforminator-field>label forforminator-field-email-1_68eea469e2ac7 idforminator-field-email-1_68eea469e2ac7-label classforminator-label>Email Address/label>input typeemail nameemail-1 value placeholderE.g. john@doe.com idforminator-field-email-1_68eea469e2ac7 classforminator-input forminator-email--field data-required aria-requiredfalse />/div>/div>div idphone-1 classforminator-field-phone forminator-col forminator-col-6 >div classforminator-field>label forforminator-field-phone-1_68eea469e2ac7 idforminator-field-phone-1_68eea469e2ac7-label classforminator-label>Phone span classforminator-required>*/span>/label>input typetext namephone-1 value placeholderE.g. +1 300 400 5000 idforminator-field-phone-1_68eea469e2ac7 classforminator-input forminator-field--phone data-required1 aria-requiredtrue autocompleteoff />/div>/div>/div>div classforminator-row>div idaddress-1 classforminator-field-address forminator-col forminator-col-12 >div classforminator-row>div idaddress-1-street_address classforminator-col>div classforminator-field>label forforminator-field-address-1-street_address_68eea469e2ac7 idforminator-field-address-1-street_address_68eea469e2ac7-label classforminator-label>Street Address/label>input typetext nameaddress-1-street_address placeholderE.g. 42 Wallaby Way idforminator-field-address-1-street_address_68eea469e2ac7 classforminator-input data-required aria-requiredfalse value />/div>/div>/div>div classforminator-row data-multipletrue>div idaddress-1-city classforminator-col forminator-col-6>div classforminator-field>label forforminator-field-address-1-city_68eea469e2ac7 idforminator-field-address-1-city_68eea469e2ac7-label classforminator-label>City/label>input typetext nameaddress-1-city placeholderE.g. Sydney idforminator-field-address-1-city_68eea469e2ac7 classforminator-input data-required aria-requiredfalse value />/div>/div>div idaddress-1-state classforminator-col forminator-col-6>div classforminator-field>label forforminator-field-address-1-state_68eea469e2ac7 idforminator-field-address-1-state_68eea469e2ac7-label classforminator-label>State/Province/label>input typetext nameaddress-1-state placeholderE.g. New South Wales idforminator-field-address-1-state_68eea469e2ac7 classforminator-input data-required aria-requiredfalse value />/div>/div>/div>div classforminator-row data-multiplefalse>div idaddress-1-zip classforminator-col forminator-col-12>div classforminator-field>label forforminator-field-address-1-zip_68eea469e2ac7 idforminator-field-address-1-zip_68eea469e2ac7-label classforminator-label>ZIP / Postal Code/label>input typetext nameaddress-1-zip placeholderE.g. 2000 idforminator-field-address-1-zip_68eea469e2ac7 classforminator-input value />/div>/div>/div>/div>/div>div classforminator-row>div idsection-2 classforminator-field-section forminator-col forminator-col-12 >div classforminator-field>h2 classforminator-title>Donation Details/h2>/div>/div>/div>div classforminator-row>div idradio-1 classforminator-field-radio forminator-col forminator-col-12 >div roleradiogroup classforminator-field aria-labelledbyforminator-radiogroup-radio-1-68eea469e2ac7-label>span idforminator-radiogroup-radio-1-68eea469e2ac7-label classforminator-label>Donation Options/span>label idforminator-field-radio-1-label-1 forforminator-field-radio-1-1-68eea469e2ac7 classforminator-radio forminator-radio-inline title5>input typeradio nameradio-1 valueone idforminator-field-radio-1-1-68eea469e2ac7 aria-labelledbyforminator-field-radio-1-label-1 data-calculation5 data-hidden-behaviorzero/>span classforminator-radio-bullet aria-hiddentrue>/span>span classforminator-radio-label>5/span>/label>label idforminator-field-radio-1-label-2 forforminator-field-radio-1-2-68eea469e2ac7 classforminator-radio forminator-radio-inline title10>input typeradio nameradio-1 valuetwo idforminator-field-radio-1-2-68eea469e2ac7 aria-labelledbyforminator-field-radio-1-label-2 data-calculation10 data-hidden-behaviorzero/>span classforminator-radio-bullet aria-hiddentrue>/span>span classforminator-radio-label>10/span>/label>label idforminator-field-radio-1-label-3 forforminator-field-radio-1-3-68eea469e2ac7 classforminator-radio forminator-radio-inline titleOther>input typeradio nameradio-1 valueOther idforminator-field-radio-1-3-68eea469e2ac7 aria-labelledbyforminator-field-radio-1-label-3 data-calculation0 data-hidden-behaviorzero/>span classforminator-radio-bullet aria-hiddentrue>/span>span classforminator-radio-label>Other/span>/label>/div>/div>/div>div classforminator-row>div idcalculation-1 classforminator-field-calculation forminator-col forminator-col-12 >div classforminator-field>label forcalculation-1-field_68eea469e2ac7 idcalculation-1-field_68eea469e2ac7-label classforminator-label>Calculations/label>input typetext namecalculation-1 value idcalculation-1-field_68eea469e2ac7 classforminator-calculation forminator-input data-formula{radio-1} + {currency-1} data-required data-decimal-point. data-precision2 data-is-hidden1 disableddisabled data-decimals2 data-inputmask'groupSeparator': '', 'radixPoint': '.', 'digits': '2' data-hidden-behaviorzero />/div>/div>/div>div classforminator-row>div idcurrency-1 classforminator-field-currency forminator-col forminator-col-12 >div classforminator-field>label forforminator-field-currency-1_68eea469e2ac7 idforminator-field-currency-1_68eea469e2ac7-label classforminator-label>Other Amount/label>div classforminator-input-with-suffix>input namecurrency-1 value placeholderE.g. 10 idforminator-field-currency-1_68eea469e2ac7 classforminator-input forminator-currency data-required aria-required data-decimals2 data-inputmask'groupSeparator': '', 'radixPoint': '.', 'digits': '2' data-hidden-behaviorzero typenumber stepany />span classforminator-suffix>USD/span>/div>/div>/div>/div>div classforminator-row forminator-hidden>div idpaypal-1 classforminator-field-paypal forminator-col forminator-col-12 >input typehidden namepaypal-1 idforminator-paypal-1-field_68eea469e2ac7 classforminator-paypal-input data-is-paymenttrue data-payment-typepaypal data-currencyusd data-amount-typevariable data-amountcalculation-1 data-label data-localeen value />/div>/div>div classforminator-row>div idconsent-1 classforminator-field-consent forminator-col forminator-col-12 >div classforminator-field>label forforminator-field-consent-1_68eea469e2ac7 idforminator-field-consent-1_68eea469e2ac7-label classforminator-label>Consent span classforminator-required>*/span>/label>div classforminator-checkbox__wrapper>label idforminator-field-consent-1_68eea469e2ac7__label classforminator-checkbox forminator-consent aria-labelledbyforminator-field-consent-1_68eea469e2ac7-label aria-hiddentrue>input typecheckbox nameconsent-1 idforminator-field-consent-1_68eea469e2ac7 valuechecked aria-labelledbyforminator-field-consent-1_68eea469e2ac7-label aria-describedbyforminator-field-consent-1_68eea469e2ac7__description data-requiredtrue aria-requiredtrue />span classforminator-checkbox-box aria-hiddentrue>/span>/label>div idforminator-field-consent-1_68eea469e2ac7__description classforminator-checkbox__label forminator-consent__label>Confirm that all information provided is accurate and consent to process the donation./div>/div>/div>/div>/div>input typehidden namereferer_url value />input typehidden namepayment_gateway_total value />div classforminator-row forminator-paypal-row>div classforminator-col forminator-col-12>div classforminator-field>div idpaypal-button-container-3103_68eea469e2ac7 classpaypal-1-payment forminator-button-paypal>/div>/div>/div>/div>div classforminator-row forminator-row-last>div classforminator-col>div classforminator-field>button classforminator-button forminator-button-submit>Donate/button>/div>/div>/div>input typehidden idforminator_nonce nameforminator_nonce valueabb1b29207 />input typehidden name_wp_http_referer value/ />input typehidden nameform_id value3103>input typehidden namepage_id value40>input typehidden nameform_type valuedefault>input typehidden namecurrent_url valuehttps://sandspringseducationfoundation.com/>input typehidden namerender_id value0>input typehidden nameaction valueforminator_submit_form_custom-forms>/form>/div> /div> /div> /div> /div> /div> script> const lazyloadRunObserver () > { const lazyloadBackgrounds document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver new IntersectionObserver( ( entries ) > { entries.forEach( ( entry ) > { if ( entry.isIntersecting ) { let lazyloadBackground entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( e-lazyloaded ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: 200px 0px 200px 0px } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) > { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events DOMContentLoaded, elementor/lazyload/observe, ; events.forEach( ( event ) > { document.addEventListener( event, lazyloadRunObserver ); } ); /script> style idcore-block-supports-inline-css>/** * Core styles: block-supports *//style>link relstylesheet idelementor-post-3104-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/elementor/css/post-3104.css?ver1759285944 mediaall />link relstylesheet idforminator-module-css-3103-css hrefhttps://sandspringseducationfoundation.com/wp-content/uploads/forminator/3103_c101b3b3109f71e4c6f6a52939472aad/css/style-3103.css?ver1723820979 mediaall />link relstylesheet idforminator-icons-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/forminator-ui/css/forminator-icons.min.css?ver1.46.2 mediaall />link relstylesheet idforminator-utilities-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/forminator-ui/css/src/forminator-utilities.min.css?ver1.46.2 mediaall />link relstylesheet idforminator-forms-default-base-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/forminator-ui/css/src/form/forminator-form-default.base.min.css?ver1.46.2 mediaall />link relstylesheet idforminator-forms-default-full-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/forminator-ui/css/src/form/forminator-form-default.full.min.css?ver1.46.2 mediaall />link relstylesheet idintlTelInput-forminator-css-css hrefhttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/css/intlTelInput.min.css?ver4.0.3 mediaall />link relstylesheet idbuttons-css hrefhttps://sandspringseducationfoundation.com/wp-includes/css/buttons.css?ver6.8.3 mediaall />link relstylesheet idforminator-font-roboto-css hrefhttps://fonts.bunny.net/css?familyRoboto&ver1.0 mediaall />script srchttps://sandspringseducationfoundation.com/wp-content/themes/hello-elementor/assets/js/hello-frontend.js?ver3.4.4 idhello-theme-frontend-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver3.32.4 idelementor-webpack-runtime-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver3.32.4 idelementor-frontend-modules-js>/script>script srchttps://sandspringseducationfoundation.com/wp-includes/js/jquery/ui/core.js?ver1.13.3 idjquery-ui-core-js>/script>script idelementor-frontend-js-before>var elementorFrontendConfig {environmentMode:{edit:false,wpPreview:false,isScriptDebug:true},i18n:{shareOnFacebook:Share on Facebook,shareOnTwitter:Share on Twitter,pinIt:Pin it,download:Download,downloadImage:Download image,fullscreen:Fullscreen,zoom:Zoom,share:Share,playVideo:Play Video,previous:Previous,next:Next,close:Close,a11yCarouselPrevSlideMessage:Previous slide,a11yCarouselNextSlideMessage:Next slide,a11yCarouselFirstSlideMessage:This is the first slide,a11yCarouselLastSlideMessage:This is the last slide,a11yCarouselPaginationBulletMessage:Go to slide},is_rtl:false,breakpoints:{xs:0,sm:480,md:768,lg:1025,xl:1440,xxl:1600},responsive:{breakpoints:{mobile:{label:Mobile Portrait,value:767,default_value:767,direction:max,is_enabled:true},mobile_extra:{label:Mobile Landscape,value:880,default_value:880,direction:max,is_enabled:false},tablet:{label:Tablet Portrait,value:1024,default_value:1024,direction:max,is_enabled:true},tablet_extra:{label:Tablet Landscape,value:1200,default_value:1200,direction:max,is_enabled:false},laptop:{label:Laptop,value:1366,default_value:1366,direction:max,is_enabled:false},widescreen:{label:Widescreen,value:2400,default_value:2400,direction:min,is_enabled:false}},hasCustomBreakpoints:false},version:3.32.4,is_static:false,experimentalFeatures:{e_font_icon_svg:true,additional_custom_breakpoints:true,container:true,theme_builder_v2:true,hello-theme-header-footer:true,nested-elements:true,home_screen:true,global_classes_should_enforce_capabilities:true,e_variables:true,cloud-library:true,e_opt_in_v4_page:true,import-export-customization:true},urls:{assets:https:\/\/sandspringseducationfoundation.com\/wp-content\/plugins\/elementor\/assets\/,ajaxurl:https:\/\/sandspringseducationfoundation.com\/wp-admin\/admin-ajax.php,uploadUrl:https:\/\/sandspringseducationfoundation.com\/wp-content\/uploads},nonces:{floatingButtonsClickTracking:380ff33cdc},swiperClass:swiper,settings:{page:,editorPreferences:},kit:{body_background_background:classic,active_breakpoints:viewport_mobile,viewport_tablet,global_image_lightbox:yes,lightbox_enable_counter:yes,lightbox_enable_fullscreen:yes,lightbox_enable_zoom:yes,lightbox_enable_share:yes,lightbox_title_src:title,lightbox_description_src:description,hello_header_logo_type:logo,hello_header_menu_layout:horizontal,hello_footer_logo_type:logo},post:{id:40,title:Sand%20Springs%20Education%20Foundation%20501%28c%29%283%29%20Nonprofit,excerpt:,featuredImage:false}};/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/js/frontend.js?ver3.32.4 idelementor-frontend-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js?ver1.2.1 idsmartmenus-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js?ver3.28.0 ide-sticky-js>/script>script srchttps://sandspringseducationfoundation.com/wp-includes/js/imagesloaded.min.js?ver5.0.0 idimagesloaded-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js?ver8.4.5 idswiper-js>/script>script ideael-general-js-extra>var localize {ajaxurl:https:\/\/sandspringseducationfoundation.com\/wp-admin\/admin-ajax.php,nonce:e8873b4eb1,i18n:{added:Added ,compare:Compare,loading:Loading...},eael_translate_text:{required_text:is a required field,invalid_text:Invalid,billing_text:Billing,shipping_text:Shipping,fg_mfp_counter_text:of},page_permalink:https:\/\/sandspringseducationfoundation.com\/,cart_redirectition:,cart_page_url:,el_breakpoints:{mobile:{label:Mobile Portrait,value:767,default_value:767,direction:max,is_enabled:true},mobile_extra:{label:Mobile Landscape,value:880,default_value:880,direction:max,is_enabled:false},tablet:{label:Tablet Portrait,value:1024,default_value:1024,direction:max,is_enabled:true},tablet_extra:{label:Tablet Landscape,value:1200,default_value:1200,direction:max,is_enabled:false},laptop:{label:Laptop,value:1366,default_value:1366,direction:max,is_enabled:false},widescreen:{label:Widescreen,value:2400,default_value:2400,direction:min,is_enabled:false}}};/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver6.3.3 ideael-general-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/js/library/jquery.validate.min.js?ver1.46.2 idforminator-jquery-validate-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/forminator-ui/js/forminator-form.min.js?ver1.46.2 idforminator-form-js>/script>script idforminator-front-scripts-js-extra>var ForminatorFront {ajaxUrl:https:\/\/sandspringseducationfoundation.com\/wp-admin\/admin-ajax.php,cform:{processing:Submitting form, please wait,error:An error occurred while processing the form. Please try again,upload_error:An upload error occurred while processing the form. Please try again,pagination_prev:Previous,pagination_next:Next,pagination_go:Submit,gateway:{processing:Processing payment, please wait,paid:Success! Payment confirmed. Submitting form, please wait,error:Error! Something went wrong when verifying the payment},captcha_error:Invalid CAPTCHA,no_file_chosen:No file chosen,intlTelInput_utils_script:https:\/\/sandspringseducationfoundation.com\/wp-content\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js,process_error:Please try again,payment_failed:Payment failed. Please try again.,payment_cancelled:Payment was cancelled},poll:{processing:Submitting vote, please wait,error:An error occurred saving the vote. Please try again},quiz:{view_results:View Results},select2:{load_more:Loading more results\u2026,no_result_found:No results found,searching:Searching\u2026,loaded_error:The results could not be loaded.}};/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/build/front/front.multi.min.js?ver1.46.2 idforminator-front-scripts-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/js/library/intlTelInput.min.js?ver1.46.2 idforminator-intlTelInput-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/js/library/inputmask.min.js?ver1.46.2 idforminator-inputmask-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/js/library/jquery.inputmask.min.js?ver1.46.2 idforminator-jquery-inputmask-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/forminator/assets/js/library/inputmask.binding.js?ver1.46.2 idforminator-inputmask-binding-js>/script>script srchttps://www.paypal.com/sdk/js?enable-fundingvenmo&client-idAdcBoy--4EalsMLpGV8fqW7bO3AxuUhmoz2GVl0Zd9GsE1La5pm9hWyEpgk8PbLD-oyl9ei8iomhgEVw¤cyUSD&localeen_US idforminator-paypal-3103-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js?ver3.28.0 idelementor-pro-webpack-runtime-js>/script>script srchttps://sandspringseducationfoundation.com/wp-includes/js/dist/hooks.js?verbe67dc331e61e06d52fa idwp-hooks-js>/script>script srchttps://sandspringseducationfoundation.com/wp-includes/js/dist/i18n.js?ver5edc734adb78e0d7d00e idwp-i18n-js>/script>script idwp-i18n-js-after>wp.i18n.setLocaleData( { text direction\u0004ltr: ltr } );/script>script idelementor-pro-frontend-js-before>var ElementorProFrontendConfig {ajaxurl:https:\/\/sandspringseducationfoundation.com\/wp-admin\/admin-ajax.php,nonce:3762121092,urls:{assets:https:\/\/sandspringseducationfoundation.com\/wp-content\/plugins\/elementor-pro\/assets\/,rest:https:\/\/sandspringseducationfoundation.com\/wp-json\/},settings:{lazy_load_background_images:true},popup:{hasPopUps:true},shareButtonsNetworks:{facebook:{title:Facebook,has_counter:true},twitter:{title:Twitter},linkedin:{title:LinkedIn,has_counter:true},pinterest:{title:Pinterest,has_counter:true},reddit:{title:Reddit,has_counter:true},vk:{title:VK,has_counter:true},odnoklassniki:{title:OK,has_counter:true},tumblr:{title:Tumblr},digg:{title:Digg},skype:{title:Skype},stumbleupon:{title:StumbleUpon,has_counter:true},mix:{title:Mix},telegram:{title:Telegram},pocket:{title:Pocket,has_counter:true},xing:{title:XING,has_counter:true},whatsapp:{title:WhatsApp},email:{title:Email},print:{title:Print},x-twitter:{title:X},threads:{title:Threads}},facebook_sdk:{lang:en_US,app_id:},lottie:{defaultAnimationUrl:https:\/\/sandspringseducationfoundation.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json}};/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver3.28.0 idelementor-pro-frontend-js>/script>script srchttps://sandspringseducationfoundation.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.js?ver3.28.0 idpro-elements-handlers-js>/script>script typetext/javascript>jQuery(function() {jQuery.ajax({url: https://sandspringseducationfoundation.com/wp-admin/admin-ajax.php,type: POST,data: {action: forminator_get_nonce,form_id: 3103,},success: function (response) {jQuery(#forminator-module-3103 #forminator_nonce).val( response.data );}});})/script> script typetext/javascript> jQuery(function () { window.Forminator_Cform_Paginations window.Forminator_Cform_Paginations || ; window.Forminator_Cform_Paginations3103 {has-pagination:false,pagination-header-design:show,pagination-header:nav,last-steps:Finish,last-previous:Previous,pagination-labels:default,has-paypal:true,progress-bar-type:progress,page-number-text:Page %1$s of %2$s,paypal-id:paypal-1}; var runForminatorFront function () { jQuery(#forminator-module-3103data-forminator-render0) .forminatorFront({form_type:custom-form,inline_validation:true,print_value:false,rules:\name-1\: \required\,\name-1\: \trim\,\email-1\: {\n\email\: false,},\n\phone-1\: {\required\: true,\trim\: true,},\currency-1\: {\minNumber\: 1,\maxNumber\: 500,},\consent-1\:{\required\:true},,messages:\name-1\: \Name is required.\,\n\email-1\: {\n},\n\phone-1\: {\n\required\: \This field is required. Please input a phone number.\,\n\trim\: \This field is required. Please input a phone number.\,\n\phone\: \Please enter a valid phone number.\,\n},\n\currency-1\: {\n\number\: \This is not valid number.\,\n\minNumber\: \Please enter a value greater than or equal to {0}.\,\n\maxNumber\: \Please enter a value less than or equal to {0}.\,\n},\n\consent-1\: {\required\:\This field is required. Please check it.\},\n,conditions:{fields:{currency-1:{action:show,rule:all,conditions:{field:radio-1,group:,operator:is,value:Other}}},relations:{name-1:,name-2:,email-1:,phone-1:,address-1:,section-2:,radio-1:currency-1,calculation-1:,currency-1:,paypal-1:,consent-1:,submit:}},calendar:{\days\:\Su\,\Mo\,\Tu\,\We\,\Th\,\Fr\,\Sa\,\months\:\Jan\,\Feb\,\Mar\,\Apr\,\May\,\Jun\,\Jul\,\Aug\,\Sep\,\Oct\,\Nov\,\Dec\},paypal_config:{element_id:paypal-1,type:paypal,options:,cols:12,conditions:,wrapper_id:wrapper-4552-2591,mode:sandbox,currency:USD,amount_type:variable,label:checkout,color:gold,shape:rect,layout:vertical,tagline:true,locale:en_US,debug_mode:disable,height:40,variable:calculation-1,parent_group:,live_id:AWZJGsx52QU_6LRs4J4YswUQ8t5Xc71MDuagAS1mlFGVVkla_K3i9_bVSXauMr3W1aoIK446BFmLrrZ3,sandbox_id:AdcBoy--4EalsMLpGV8fqW7bO3AxuUhmoz2GVl0Zd9GsE1La5pm9hWyEpgk8PbLD-oyl9ei8iomhgEVw,redirect_url:https:\/\/sandspringseducationfoundation.com,form_id:3103},forminator_fields:address,calculation,captcha,consent,currency,custom,date,email,gdprcheckbox,group,hidden,html,checkbox,name,number,page-break,password,paypal,phone,postdata,radio,rating,section,select,slider,stripe-ocs,stripe,text,textarea,time,upload,url,general_messages:{calculation_error:Failed to calculate field.,payment_require_ssl_error:SSL required to submit this form, please check your URL.,payment_require_amount_error:PayPal amount must be greater than 0.,form_has_error:Please correct the errors before submission.},payment_require_ssl:true,has_loader:true,loader_label:Submitting...,calcs_memoize_time:300,is_reset_enabled:true,has_stripe:false,has_paypal:true,submit_button_class:}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks ! undefined) { elementorFrontend.hooks.addAction(frontend/element_ready/global, function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors ! undefined) { var forminatorFrontSubmit jQuery(ForminatorValidationErrors.selector).data(forminatorFrontSubmit); if (typeof forminatorFrontSubmit ! undefined) { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider ! undefined) { var forminatorFront jQuery(ForminatorFormHider.selector).data(forminatorFront); if (typeof forminatorFront ! undefined) { jQuery(forminatorFront.forminator_selector).find(.forminator-row).hide(); jQuery(forminatorFront.forminator_selector).find(.forminator-pagination-steps).hide(); jQuery(forminatorFront.forminator_selector).find(.forminator-pagination-footer).hide(); } } }); /script> /body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]