Help
RSS
API
Feed
Maltego
Contact
Domain > candeoschools.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-10-17
50.6.152.236
(
ClassC
)
Port 443
HTTP/1.1 200 OKDate: Fri, 17 Oct 2025 14:04:48 GMTServer: nginx/1.27.2Content-Type: text/html; charsetUTF-8Link: https://candeoschools.com/wp-json/>; relhttps://api.w.org/, https://candeoschools.com/wp-json/wp/v2/pages/31>; relalternate; titleJSON; typeapplication/json, https://candeoschools.com/>; relshortlinkX-TEC-API-VERSION: v1X-TEC-API-ROOT: https://candeoschools.com/wp-json/tribe/events/v1/X-TEC-API-ORIGIN: https://candeoschools.comCache-Control: max-age7200Expires: Fri, 17 Oct 2025 14:34:36 GMTVary: Accept-Encodinghost-header: c2hhcmVkLmJsdWVob3N0LmNvbQX-Newfold-Cache-Level: 2X-Server-Cache: trueX-Proxy-Cache: HITTransfer-Encoding: chunked !doctype html>html langen> head> meta charsetutf-8> meta http-equivx-ua-compatible contentieedge> meta nameviewport contentwidthdevice-width, initial-scale1> script typetext/javascript> var ajaxurl https://candeoschools.com/wp-admin/admin-ajax.php; var gpageID 31; /script> title>Candeo Schools – Fundamentally Classical. Decidedly Innovative./title>meta namerobots contentmax-image-preview:large /> style>img:is(sizesauto i, sizes^auto, i) { contain-intrinsic-size: 3000px 1500px }/style> link reldns-prefetch href//code.ionicframework.com />script typetext/javascript>/* !CDATA */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:\/\/candeoschools.com\/wp-includes\/js\/wp-emoji.js?ver564c49316c2c7a2742cd596375549153,twemoji:https:\/\/candeoschools.com\/wp-includes\/js\/twemoji.js?ver564c49316c2c7a2742cd596375549153}};/** * @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 typetext/css> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; }/style>link relstylesheet idwp-block-library-css hrefhttps://candeoschools.com/wp-includes/css/dist/block-library/style.css?ver564c49316c2c7a2742cd596375549153 typetext/css mediaall />style idclassic-theme-styles-inline-css typetext/css>/** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */.wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it wont override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em;}.wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none;}/style>style idglobal-styles-inline-css typetext/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);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.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;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}/style>link relstylesheet idcmplz-general-css hrefhttps://candeoschools.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.css?ver1737137148 typetext/css mediaall />link relstylesheet idwppopups-base-css hrefhttps://candeoschools.com/wp-content/plugins/wp-popups-lite/src/assets/css/wppopups-base.css?ver2.2.0.2 typetext/css mediaall />link relstylesheet idpost-launch-css-css hrefhttps://candeoschools.com/wp-content/themes/candeo/assets/styles/additional.css?ver564c49316c2c7a2742cd596375549153 typetext/css mediaall />link relstylesheet idsage/css-css hrefhttps://candeoschools.com/wp-content/themes/candeo/dist/styles/main.css typetext/css mediaall />link relstylesheet idcustom/css-css hrefhttps://candeoschools.com/wp-content/themes/candeo/assets/custom.css typetext/css mediaall />link relstylesheet idicon-set-css href//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css typetext/css mediaall />script typetext/javascript srchttps://candeoschools.com/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script typetext/javascript srchttps://candeoschools.com/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>script typetext/javascript async srchttps://candeoschools.com/wp-content/plugins/burst-statistics/helpers/timeme/timeme.js?ver1.7.3#1760704477 idburst-timeme-js>/script>script typetext/javascript idburst-js-extra>/* !CDATA */var burst {cookie_retention_days:30,beacon_url:https:\/\/candeoschools.com\/wp-content\/plugins\/burst-statistics\/endpoint.php,options:{beacon_enabled:1,enable_cookieless_tracking:0,enable_turbo_mode:0,do_not_track:0,track_url_change:0},goals:{ID:1,title:Default goal,type:clicks,status:active,server_side:0,url:*,conversion_metric:visitors,date_created:1713553606,date_start:1713553606,date_end:0,attribute:class,attribute_value:,hook:},goals_script_url:https:\/\/candeoschools.com\/wp-content\/plugins\/burst-statistics\/\/assets\/js\/build\/burst-goals.js?v1.7.3#1760704477};/* > *//script>script typetext/javascript async srchttps://candeoschools.com/wp-content/plugins/burst-statistics/assets/js/build/burst.js?ver1.7.3#1760704477 idburst-js>/script>link relhttps://api.w.org/ hrefhttps://candeoschools.com/wp-json/ />link relalternate titleJSON typeapplication/json hrefhttps://candeoschools.com/wp-json/wp/v2/pages/31 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://candeoschools.com/xmlrpc.php?rsd />link relcanonical hrefhttps://candeoschools.com/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://candeoschools.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fcandeoschools.com%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://candeoschools.com/wp-json/oembed/1.0/embed?urlhttps%3A%2F%2Fcandeoschools.com%2F&formatxml />meta nametec-api-version contentv1>meta nametec-api-origin contenthttps://candeoschools.com>link relalternate hrefhttps://candeoschools.com/wp-json/tribe/events/v1/ />style typetext/css>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}/style>style typetext/css idspu-css-3370 classspu-css> #spu-bg-3370 { background-color: rgba(0,0,0, 0.5); } #spu-3370 .spu-close { font-size: 30px; color: #666; text-shadow: 0 1px 0 #fff; } #spu-3370 .spu-close:hover { color: #000; } #spu-3370 { background-color: rgba(238,238,238, 1); max-width: 600px; border-radius: 0px; height: auto; box-shadow: 0px 0px 10px 1px #666; } #spu-3370 .spu-container { padding: 25px; height: calc(100% - 28px); } /* * Add custom CSS for this popup * Be sure to start your rules with #spu-3370 { } and use !important when needed to override plugin rules */ /style> link relicon hrefhttps://candeoschools.com/wp-content/uploads/2020/01/cropped-corporate-shield-01-32x32.png sizes32x32 />link relicon hrefhttps://candeoschools.com/wp-content/uploads/2020/01/cropped-corporate-shield-01-192x192.png sizes192x192 />link relapple-touch-icon hrefhttps://candeoschools.com/wp-content/uploads/2020/01/cropped-corporate-shield-01-180x180.png />meta namemsapplication-TileImage contenthttps://candeoschools.com/wp-content/uploads/2020/01/cropped-corporate-shield-01-270x270.png /> style typetext/css idwp-custom-css> /*You can add your own CSS here.Click the help icon above to learn more.*/div#navbar .nav li>.sub-menu { display: none;}div#navbar .nav li:hover>.sub-menu { display: flex;}div#navbar .nav>li .sub-menu { position: absolute; z-index: 5; left: 0; top: 100%; padding-left: 0; background: #313842; flex-direction: column; min-width: 300px;}header .menu-primary-navigation-container>ul { position: relative;}div#navbar .nav>li .sub-menu li>a { padding: 10px 2.3vw; text-align: left;}header .menu-primary-navigation-container ul.sub-menu li { border-right: 0; border-top: 1px solid white;}.mobile-nav .center-it { position: relative; display: flex; top: 0; left: 0; transform: none; width: 100vw; min-height: 100vh; flex-direction: column; align-items: center; justify-content: center;}.mobile-nav .closeit { z-index: 55;}.mobile-nav { width: 100vw;}div#navbar .nav>li .sub-menu .sub-menu { min-width: 100%; margin-left: 20px;}div#navbar .nav>li .sub-menu .sub-menu>li {min-width: 100%;display: block;}#heroVideo { position: absolute; min-width: 100%; min-height: 100%; top: 50%; left: 50%; transform: translate(-50%, -50%);}section#hero { overflow: hidden;}header .menu-primary-navigation-container ul li { position: relative;}@media only screen and (max-width: 768px) {.submenu { display: none!important;}}@media only screen and (max-width: 992px) {.menu-primary-navigation-container { text-align: left;padding-left: 10px;}ul.sub-menu { padding-left: 0px;}.menu-item-has-children:after {content: >;display: inline-block;position: absolute;color: white;font-size: 27px;right: 0;top: 0;transform: scaleX(0.7);}.menu-item-has-children { padding-right: 40px; position: relative;}.menu-item-has-children:hover>ul { display: block; padding-left: 20px;}.menu-item-has-children>ul { display: none;}}/* Center the header container and balance left/right items */.site-header .container,.header .container,.site-header .wrap,.header .wrap { margin-left: auto !important; margin-right: auto !important; max-width: 1200px; /* adjust to your site width */}/* Ensure the inner header uses flex and aligns nicely */.site-header .inner,.header .inner,.site-header .container > div,.header .container > div { display: flex; align-items: center; justify-content: space-between;}/* If the logo pushes things off-center, cap its width */.site-branding img,.header-logo img,.custom-logo { max-height: 60px; /* adjust as needed */ width: auto; height: auto;}/* Equalize left/right sections so the center stays centered */.header-left,.header-right,.site-header .menu,.site-header .nav { flex: 1 1 0;}.site-branding, .header-center { flex: 0 0 auto;} /style> script typetext/javascript>(function (d, t) { var bh d.createElement(t), s d.getElementsByTagName(t)0; bh.type text/javascript; bh.src https://www.bugherd.com/sidebarv2.js?apikeykvuz9l0yxzaez6n60dyyta; s.parentNode.insertBefore(bh, s); })(document, script);/script>/head> body data-rsssl1 classhome wp-singular page-template page-template-tmpl-home page-template-tmpl-home-php page page-id-31 wp-theme-candeo tribe-no-js> !--if IE> div classalert alert-warning> You are using an strong>outdated/strong> browser. Please a hrefhttp://browsehappy.com/>upgrade your browser/a> to improve your experience. /div> !endif--> div classmobile-nav> div classcloseit>i classion-android-close>/i>/div> div classcenter-it> div classmenu-primary-navigation-container>ul idmenu-primary-navigation classnav>li idmenu-item-3794 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3794>a hrefhttps://candeoschools.com/about/>About/a>ul classsub-menu> li idmenu-item-3326 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3326>a hrefhttps://candeoschools.com/about/>Mission & Philosophy/a>/li> li idmenu-item-3025 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3025>a hrefhttps://candeoschools.com/about/curriculum-instruction/>Curriculum & Instruction/a>/li> li idmenu-item-3050 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3050>a hrefhttps://candeoschools.com/about/governance-staff/>Leadership & Governance/a>/li> li idmenu-item-3325 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3325>a hrefhttps://candeoschools.com/about/tours/>Take a Tour/a>/li>/ul>/li>li idmenu-item-29 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-29>a hrefhttps://candeoschools.com/results/>Results/a>ul classsub-menu> li idmenu-item-3390 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3390>a hrefhttps://candeoschools.com/results/>Rankings & Awards/a>/li> li idmenu-item-3053 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3053>a hrefhttps://candeoschools.com/results/parent-satisfaction-testimonials/>Parent Satisfaction & Testimonials/a>/li> li idmenu-item-3054 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3054>a hrefhttps://candeoschools.com/results/in-the-news/>Press/a>/li>/ul>/li>li idmenu-item-3846 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3846>a hrefhttps://candeoschools.com/admissions/admissions/>Admissions/a>ul classsub-menu> li idmenu-item-3863 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3863>a hrefhttps://candeoschools.com/admissions/admissions/>Enrollment Overview/a>/li> li idmenu-item-3895 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3895>a hrefhttps://candeoschools.com/admissions/enrollment-timeline/>Enrollment Timeline/a>/li> li idmenu-item-3829 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3829>a hrefhttps://candeoschools.com/admissions/enrollment-faq/>Enrollment FAQ/a>/li> li idmenu-item-3905 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3905>a hrefhttps://candeoschools.com/admissions/policies-procedures/>Policies & Procedures/a>/li>/ul>/li>li idmenu-item-179 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-179>a hrefhttps://candeoschools.com/careers/>Careers/a>ul classsub-menu> li idmenu-item-3793 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3793>a hrefhttps://candeoschools.com/careers/why-work-at-candeo/>Why work at Candeo/a>/li> li idmenu-item-3055 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3055>a hrefhttps://candeoschools.com/careers/school-positions/>Openings/a>/li> li idmenu-item-3137 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3137>a hrefhttps://candeoschools.com/careers/>Application/a>/li>/ul>/li>li idmenu-item-26 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-26>a hrefhttps://candeoschools.com/parents/>Parents/a>ul classsub-menu> li idmenu-item-3062 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3062>a target_blank hrefhttps://candeo.powerschool.com/public/home.html>Parent Portal Login/a>/li> li idmenu-item-2529 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2529>a hrefhttps://candeoschools.com/parents/academic-calendar/>Calendar/a>/li> li idmenu-item-3065 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3065>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2024/09/Candeo-Family-Handbook-Rev-07-24.pdf>Candeo Family Handbook/a>/li> li idmenu-item-3060 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3060>a hrefhttps://candeoschools.com/parents/uniform-policy/>Uniform Policy/a>/li> li idmenu-item-3796 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3796>a hrefhttps://candeoschools.com/parents/school-lunch/>School Lunch/a>/li> li idmenu-item-3059 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3059>a hrefhttps://candeoschools.com/parents/extra-curricular/>Extracurricular/a>/li> li idmenu-item-3057 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3057>a hrefhttps://candeoschools.com/parents/aftercare-camps/>After School Program/a>/li> li idmenu-item-3061 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3061>a hrefhttps://candeoschools.com/parents/report-an-absence/>Report an Absence/a>/li> li idmenu-item-3211 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3211>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2023/08/Safe-to-Return-August-2023.pdf>Safe Return to In-Person Instruction/a>/li>/ul>/li>li idmenu-item-2878 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2878>a hrefhttps://candeoschools.com/support/>Support/a>/li>li idmenu-item-2906 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2906>a hrefhttps://candeoschools.com/contact/>Contact/a>/li>/ul>/div> div classbutton-wrap> div classbutton>a hrefhttps://candeoschools.com/tours/ classbtn btn-trans-red booktour >Take a Tour/a>/div> div classbutton> a hrefhttps://candeoschools.com/support/tax-credit-donation/ classbtn btn-trans-red contactbtn > span >TAX CREDIT/span> !-- desktop --> /a> /div> /div> /div>/div>header> nav classnavbar navbar-default> div classnavbar-header> i classfa fa-bars mob-nav aria-hiddentrue>/i> div classrow> div classcol-sm-2> !-- social media --> a class hrefhttps://www.facebook.com/CandeoSchools/ target_blank> img srchttps://candeoschools.com/wp-content/uploads/2024/11/icons8-facebook-24-1.png /> /a> a class hrefhttps://www.instagram.com/candeoschoolsofficial/ target_blank> img srchttps://candeoschools.com/wp-content/uploads/2024/11/icons8-instagram-24-1.png /> /a> a class hrefhttps://www.linkedin.com/company/candeo-schools target_blank> img srchttps://candeoschools.com/wp-content/uploads/2024/11/icons8-linkedin-24-1.png /> /a> div classsearch-btn hidemd>img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/icon-search.svg />/div> /div> div classcol-sm-3 align-center> a class hrefhttps://candeoschools.com> img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/logo.svg /> /a> /div> div classcol-sm-7 align-left> !-- a hrefhttps://candeoschools.com/tours/ classbtn btn-trans-red contactbtn hidemd>Take a Tour/a> a hrefhttps://candeoschools.com/admissions/ classbtn btn-trans-red booktour hidemd>Admissions/a> a hrefhttps://candeoschools.com/support/ classbtn btn-trans-red booktour hidemd>Donate/a> -->style>.button0 { background-color: #a7243d; border: none; color: white; padding-top: 12px; padding-right: 20px; padding-bottom: 8px; padding-left: 20px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; transition-duration: 0.4s; cursor: pointer; font-family: Minion Pro Reg; letter-spacing: 1.28px; font-style: italic; }.button1 { background-color: white; color: #a7243d; border: 2px solid #a7243d;}.button1:hover { background-color: #a7243d; color: white;}/style>a hrefhttps://candeoschools.com/tours/>button classbutton0 button1>TAKE A TOUR/button>/a>a hrefhttps://candeoschools.com/admissions/>button classbutton0 button1>ADMISSIONS/button>/a>a hrefhttps://candeoschools.com/support/>button classbutton0 button1>DONATE/button>/a> /div> /div> !-- /row --> /div> div classsearchbox> div classclosesearch>i classion-android-close>/i>/div> form rolesearch methodget classsearch-form actionhttps://candeoschools.com> label> span classscreen-reader-text>Search for:/span> input typesearch classsearch-field placeholderSearch … value names> /label> div classsubsearch>button typesubmit classion-ios-search-strong>/button>/div> /form> /div> /nav> div classfullmenu align-center idfullmenu> div idnavbar classnavbar-collapse> div classmenu-primary-navigation-container>ul idmenu-primary-navigation-1 classnav twrap>li classmenu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3794>a hrefhttps://candeoschools.com/about/>About/a>ul classsub-menu> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3326>a hrefhttps://candeoschools.com/about/>Mission & Philosophy/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3025>a hrefhttps://candeoschools.com/about/curriculum-instruction/>Curriculum & Instruction/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3050>a hrefhttps://candeoschools.com/about/governance-staff/>Leadership & Governance/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3325>a hrefhttps://candeoschools.com/about/tours/>Take a Tour/a>/li>/ul>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-29>a hrefhttps://candeoschools.com/results/>Results/a>ul classsub-menu> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3390>a hrefhttps://candeoschools.com/results/>Rankings & Awards/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3053>a hrefhttps://candeoschools.com/results/parent-satisfaction-testimonials/>Parent Satisfaction & Testimonials/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3054>a hrefhttps://candeoschools.com/results/in-the-news/>Press/a>/li>/ul>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3846>a hrefhttps://candeoschools.com/admissions/admissions/>Admissions/a>ul classsub-menu> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3863>a hrefhttps://candeoschools.com/admissions/admissions/>Enrollment Overview/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3895>a hrefhttps://candeoschools.com/admissions/enrollment-timeline/>Enrollment Timeline/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3829>a hrefhttps://candeoschools.com/admissions/enrollment-faq/>Enrollment FAQ/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3905>a hrefhttps://candeoschools.com/admissions/policies-procedures/>Policies & Procedures/a>/li>/ul>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-179>a hrefhttps://candeoschools.com/careers/>Careers/a>ul classsub-menu> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3793>a hrefhttps://candeoschools.com/careers/why-work-at-candeo/>Why work at Candeo/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3055>a hrefhttps://candeoschools.com/careers/school-positions/>Openings/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3137>a hrefhttps://candeoschools.com/careers/>Application/a>/li>/ul>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-26>a hrefhttps://candeoschools.com/parents/>Parents/a>ul classsub-menu> li classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3062>a target_blank hrefhttps://candeo.powerschool.com/public/home.html>Parent Portal Login/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2529>a hrefhttps://candeoschools.com/parents/academic-calendar/>Calendar/a>/li> li classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3065>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2024/09/Candeo-Family-Handbook-Rev-07-24.pdf>Candeo Family Handbook/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3060>a hrefhttps://candeoschools.com/parents/uniform-policy/>Uniform Policy/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3796>a hrefhttps://candeoschools.com/parents/school-lunch/>School Lunch/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3059>a hrefhttps://candeoschools.com/parents/extra-curricular/>Extracurricular/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3057>a hrefhttps://candeoschools.com/parents/aftercare-camps/>After School Program/a>/li> li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3061>a hrefhttps://candeoschools.com/parents/report-an-absence/>Report an Absence/a>/li> li classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3211>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2023/08/Safe-to-Return-August-2023.pdf>Safe Return to In-Person Instruction/a>/li>/ul>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2878>a hrefhttps://candeoschools.com/support/>Support/a>/li>li classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2906>a hrefhttps://candeoschools.com/contact/>Contact/a>/li>/ul>/div> /div> div classmobile-navigation> div classmob-nav>Menu/div> /div> /div>/header> div classwrap roledocument> div classcontent> main classmain-wrap> !-- Hero -->section idhero stylebackground: url(https://candeoschools.com/wp-content/uploads/2017/02/iStock-613666198-2.jpg) top center; background-size: cover> video autoplay muted loop idheroVideo> source srchttps://candeoschools.com/wp-content/uploads/2017/02/Candeo-Pre-Roll-10.mp4 typevideo/mp4> /video> div classblue-over>/div> div classcenter-it> h2 classhero-title>RIGOROUS SCHOOLING IN THE CLASSICAL LIBERAL ARTS/h2> a hrefhttps://candeoschools.com/apply-now/ target_blank classbtn btn-red>APPLY NOW/a> /div> !-- /center it -->/section>section> p aligncenter>br />br /> a hrefhttps://www.usnews.com/education/k12/arizona/candeo-peoria-231592 target_blank border0>img srchttps://candeoschools.com/wp-content/uploads/2025/02/best_elementary_schools.png width150px />/a> a hrefhttps://www.coreknowledge.org/candeo-peoria-school/ target_blank border0>img srchttps://candeoschools.com/wp-content/uploads/2025/02/core_knowledge.png width150px />/a> a hrefhttps://k12.hillsdale.edu/Schools/Affiliation-levels/ target_blank border0>img srchttps://candeoschools.com/wp-content/uploads/2025/02/hillsdale_college_k12_curriculum.png width150px />/a> a hrefhttps://www.usnews.com/education/k12/arizona/candeo-peoria-231592 target_blank border0>img srchttps://candeoschools.com/wp-content/uploads/2025/02/best_middle_schools.png width150px />/a> br />br /> font size1>*Best Elementary and Best Middle School in Arizona (US News & World Report Rankings) 2022 & 2024/font> /p>/section>!-- Pillars -->div classspacer>/div>section idpillars> div classcontainer container-lg> div classrow row-eq-height> div classcol-lg-4> div classpillar-wrap> div classborder-wrap> h3 classpillar-title>We are MISSION DRIVEN/h3> p>Everything we do, no matter the scale, centers on our mission and moves it forward. Our mission is to grow wisdom and virtue for a life well lived through rigorous knowledge-based schooling in the classical liberal arts. /p> a hrefhttps://candeoschools.com/about/ classmore>More svg width43px height12px viewBox-1 -1 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink classmorearrow-wrap> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idGroup strokenone stroke-width1 fillnone fill-ruleevenodd classmorearrow> path dM0.707792744,5 L40,5 idShape stroke#313842 stroke-width2 classmorearrow>/path> polyline idShape stroke#313842 stroke-width2 points35 0 40 5 35 10 classmorearrow>/polyline> /g>/svg> /a> /div> !-- /border wrap --> /div> /div> div classcol-lg-4> div classpillar-wrap> div classborder-wrap> h3 classpillar-title>We PURSUE EXCELLENCE/h3> p>The fullness of our mission is realized in the excellence of our work. Our teachers and leaders actively cultivate an environment of intellectual and moral virtue which brings about the highest and best in people, place, and purpose. Together, we commit to exemplary academic, operational, and financial performance that leads to world-class results. /p> a hrefhttps://candeoschools.com/about/ classmore>More svg width43px height12px viewBox-1 -1 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink classmorearrow-wrap> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idGroup strokenone stroke-width1 fillnone fill-ruleevenodd classmorearrow> path dM0.707792744,5 L40,5 idShape stroke#313842 stroke-width2 classmorearrow>/path> polyline idShape stroke#313842 stroke-width2 points35 0 40 5 35 10 classmorearrow>/polyline> /g>/svg> /a> /div> !-- /border wrap --> /div> /div> div classcol-lg-4> div classpillar-wrap> div classborder-wrap> h3 classpillar-title>We LEAD the WAY/h3> p>Our work is to restore what is lost in common education today. We asked the question,“What does it mean to be truly educated?” and founded our school upon that which is authoritative, traditional, and enduring. Through world-class programming and top-tier results, we shine a light on what is possible in education./p> a hrefhttps://candeoschools.com/about/ classmore>More svg width43px height12px viewBox-1 -1 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink classmorearrow-wrap> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idGroup strokenone stroke-width1 fillnone fill-ruleevenodd classmorearrow> path dM0.707792744,5 L40,5 idShape stroke#313842 stroke-width2 classmorearrow>/path> polyline idShape stroke#313842 stroke-width2 points35 0 40 5 35 10 classmorearrow>/polyline> /g>/svg> /a> /div> !-- /border wrap --> /div> /div> /div> /div>/section>div classspacer>/div>!-- Testimonials -->div classspacer>/div>section idtestimonials> div classcontainer> div classicon-line relative> img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/icon-line.png classlicon /> div classblue-line>/div> /div> div classtestimonial-wrap> ul idlightSlider> li> div classtestimonials>I chose Candeo because it offers a rich knowledge based curriculum... My 5-year-old accurately explained the life cycle of plants as we planted our fall garden at home!/div> div classtest-nav row> div classtest-prev col-xs align-right> svg width43px height12px viewBox-2 2 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-right-copy strokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(20.000000, 8.000000) scale(-1, 1) translate(-20.000000, -8.000000) translate(0.000000, 3.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> Previous /div> div classtest-name col-xs align-center> Parent at Candeo /div> !-- /test-name --> div classtest-next col-xs align-left> Next svg width43px height12px viewBox63 3 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-rightstrokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(64.000000, 4.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> /div> /div> /li> li> div classtestimonials>After 6 years of teaching, finding Candeo was the breath of fresh air I was looking for! Ive finally found an environment where I can thrive! Candeo puts respect and professionalism back into teaching. Candeo also sets high expectations for both teachers and students. While meeting those expectations, I have the trust and flexibility to do whats best for students./div> div classtest-nav row> div classtest-prev col-xs align-right> svg width43px height12px viewBox-2 2 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-right-copy strokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(20.000000, 8.000000) scale(-1, 1) translate(-20.000000, -8.000000) translate(0.000000, 3.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> Previous /div> div classtest-name col-xs align-center> Teacher at Candeo /div> !-- /test-name --> div classtest-next col-xs align-left> Next svg width43px height12px viewBox63 3 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-rightstrokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(64.000000, 4.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> /div> /div> /li> li> div classtestimonials>With everything going on right now take a look at Candeo. You won’t be disappointed. They teach core values, real history, and start the day with the Pledge of Allegiance. They’re a step above./div> div classtest-nav row> div classtest-prev col-xs align-right> svg width43px height12px viewBox-2 2 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-right-copy strokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(20.000000, 8.000000) scale(-1, 1) translate(-20.000000, -8.000000) translate(0.000000, 3.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> Previous /div> div classtest-name col-xs align-center> Parent at Candeo /div> !-- /test-name --> div classtest-next col-xs align-left> Next svg width43px height12px viewBox63 3 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-rightstrokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(64.000000, 4.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> /div> /div> /li> li> div classtestimonials>Im blessed to have the opportunity to do what I love every single day in a joyful environment filled with rigor and knowledge-building. Im also surrounded by colleagues who believe in our mission and work together to meet it. This place provides the type of education and environment I would have loved to experience as a child./div> div classtest-nav row> div classtest-prev col-xs align-right> svg width43px height12px viewBox-2 2 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-right-copy strokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(20.000000, 8.000000) scale(-1, 1) translate(-20.000000, -8.000000) translate(0.000000, 3.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> Previous /div> div classtest-name col-xs align-center> Teacher at Candeo /div> !-- /test-name --> div classtest-next col-xs align-left> Next svg width43px height12px viewBox63 3 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-rightstrokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(64.000000, 4.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> /div> /div> /li> li> div classtestimonials>I love that the elementary children are getting a well-rounded education! My son was learning about things in 2nd grade that I didnt even know about until high school. There is something magical about Candeo that allows children to grow and flourish./div> div classtest-nav row> div classtest-prev col-xs align-right> svg width43px height12px viewBox-2 2 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-right-copy strokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(20.000000, 8.000000) scale(-1, 1) translate(-20.000000, -8.000000) translate(0.000000, 3.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> Previous /div> div classtest-name col-xs align-center> Parent at Candeo /div> !-- /test-name --> div classtest-next col-xs align-left> Next svg width43px height12px viewBox63 3 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-rightstrokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(64.000000, 4.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> /div> /div> /li> li> div classtestimonials>At Candeo there is a large emphasis on building positive and respectful relationships with staff, parents, students, and other teachers. We demonstrate this with the acronym R.E.A.C.H. (Respect, Effort, Alacrity, Civility, and Heart). At Candeo, we do not only care about getting good test scores, but also about creating students to become a well rounded individual in all areas. /div> div classtest-nav row> div classtest-prev col-xs align-right> svg width43px height12px viewBox-2 2 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-right-copy strokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(20.000000, 8.000000) scale(-1, 1) translate(-20.000000, -8.000000) translate(0.000000, 3.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> Previous /div> div classtest-name col-xs align-center> Teacher at Candeo /div> !-- /test-name --> div classtest-next col-xs align-left> Next svg width43px height12px viewBox63 3 43 12 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idarrows-24px-outline-1_tail-rightstrokenone stroke-width1 fillnone fill-ruleevenodd transformtranslate(64.000000, 4.000000)> g idGroup stroke#7C9BC9 stroke-width2 classnextbtn> path dM0.707792744,5 L40,5 idShape>/path> polyline idShape points35 0 40 5 35 10>/polyline> /g> /g>/svg> /div> /div> /li> /ul> /div> !-- /testimonial --> div classblue-line no>/div> /div>/section>!-- Rankings -->div classspacer>/div>section idrankings> div classcontainer> div classcol-md-10 offset-md-1> header> h3>Rankings and Awards/h3> p classsubhead> Since its inception in 2008, Candeo has performed in the top 1% of all schools in the state. As shown below, Candeo more than doubles the performance levels of other schools in Reading, Science, Math, and Writing. /p> /header> div classrow line-wrap> div classcol-sm-3>/div> div classcol-sm-9> div classrow> div classcol-xs-4 candeo>div classline candeo-line>/div>Candeo/div> div classcol-xs-4 charter>div classline charter-line>/div>Charter/div> div classcol-xs-4 arizona>div classline arizona-line>/div>Arizona/div> /div> /div> /div> div classrow line-wrap> div classcol-sm-3 line-title>Reading/div> div classcol-sm-9 lines> div classline candeo candeo-line stylewidth: 90%>/div> div classline charter charter-line stylewidth: 40%>/div> div classline arizona arizona-line stylewidth: 20%>/div> /div> /div> div classrow line-wrap> div classcol-sm-3 line-title>Science/div> div classcol-sm-9 lines> div classline candeo candeo-line stylewidth: 90%>/div> div classline charter charter-line stylewidth: 50%>/div> div classline arizona arizona-line stylewidth: 40%>/div> /div> /div> div classrow line-wrap> div classcol-sm-3 line-title>Math/div> div classcol-sm-9 lines> div classline candeo candeo-line stylewidth: 90%>/div> div classline charter charter-line stylewidth: 35%>/div> div classline arizona arizona-line stylewidth: 45%>/div> /div> /div> div classrow line-wrap> div classcol-sm-3 line-title>Writing/div> div classcol-sm-9 lines> div classline candeo candeo-line stylewidth: 75%>/div> div classline charter charter-line stylewidth: 30%>/div> div classline arizona arizona-line stylewidth: 25%>/div> /div> /div> /div> !-- /col-md-10 --> /div> !-- /container --> div classspacer>/div> div classcontainer-lg align-center> div classrow> div classcol-md-3 col-sm-6> div classicon>img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/trophy.svg />/div> div classdesc>NATIONALLY ACCREDITED SCHOOL (AdvancEd/NCA) br />2015/div> /div> div classcol-md-3 col-sm-6> div classicon>img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/trophy.svg />/div> div classdesc>RATED A AND EXCELLING SINCE INCEPTION (AZ DEPARTMENT OF EDUCATION)/div> /div> div classcol-md-3 col-sm-6> div classicon>img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/trophy.svg />/div> div classdesc>CORE KNOWLEDGE SCHOOL OF DISTINCTION 2021/div> /div> div classcol-md-3 col-sm-6> div classicon>img srchttps://candeoschools.com/wp-content/themes/candeo/assets/images/trophy.svg />/div> div classdesc>BEST ELEMENTARY AND BEST MIDDLE SCHOOL IN AZ (US NEWS & WORLD REPORT RANKINGS) br />2022 & 2024/div> /div> /div> /div> div classperc align-center>* Percent of students exceeding standards, 2014/div>/section>!-- Admissions -->div classspacer>/div>section idadmissions> div classrow> div classcol-sm-6 admin-bg stylebackground: url(https://candeoschools.com/wp-content/uploads/2020/07/iStock-1154943465-1-e1603744971321.jpg) center center; background-size: cover>/div> div classcol-sm-6 ad-wrap> div classcenter-it> h3>ADMISSIONS/h3> p>Open Enrollment for all applicants for the upcoming school year takes place November 1-30th of each year. All applications are submitted online. If there are more applicants than space available, a lottery is held the week following open enrollment. Applications received outside of the Open Enrollment window are accepted on a first come, first served basis for any current school year./p> a hrefhttps://candeoschools.com/admissions classbtn btn-trans>Apply Today/a> /div> !-- /center-it --> /div> /div>/section> /main>!-- /.main --> /div>!-- /.content --> /div>!-- /.wrap --> !-- Life at Candeo -->section idlife> div classspacer>/div> div classicon-line relative align-center> h3>Life At Candeo/h3> div classblue-line>/div> /div> div classrow life-at> div classcol-xs-3>img srchttps://candeoschools.com/wp-content/uploads/2020/10/iStock-483161230-e1603744806876.jpg />/div> div classcol-xs-3>img srchttps://candeoschools.com/wp-content/uploads/2020/10/iStock-171583557-e1603744821324.jpg />/div> div classcol-xs-3>img srchttps://candeoschools.com/wp-content/uploads/2020/10/iStock-495978546-e1603744835967.jpg />/div> div classcol-xs-3>img srchttps://candeoschools.com/wp-content/uploads/2020/10/iStock-868261350-e1603744849724.jpg />/div> /div> /section>footer classcontent-info> div classcontainer container-lg> div classrow> div classcol-lg-2 lightmark> a hrefhttps://candeoschools.com>img srchttps://candeoschools.com/wp-content/uploads/2021/03/corporate-shield-80.png />/a> /div> div classcol-lg-8> div classfootnav align-center> div classmenu-footer-menu-container>ul idmenu-footer-menu classnav>li idmenu-item-2057 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-2057>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2025/06/Screenshot-2025-06-19-at-10.35.20 PM.png>Notice of Hearing/a>/li>li idmenu-item-1519 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-1519>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2025/06/Screenshot-2025-06-21-at-4.16.03 PM.png>Budget/a>/li>li idmenu-item-2084 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-2084>a target_blank hrefhttps://asbcs.my.site.com/s/account/0014x00001uxrxe/candeo-schools-inc>Peoria Performance Dashboard/a>/li>li idmenu-item-3126 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3126>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2023/08/Safe-to-Return-August-2023.pdf>Safe Return to In-Person Instruction/a>/li>li idmenu-item-2920 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-2920>a hrefhttps://candeoschools.com/about/governance-staff/title-ix/>Title IX/a>/li>li idmenu-item-2769 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-2769>a target_blank hrefhttps://candeoschools.com/wp-content/uploads/2025/01/Parent_Rights_Handbook_Public_District_Schools_2023_Final.pdf>ADE Parental Rights Handbook/a>/li>li idmenu-item-3659 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-3659>a hrefhttps://candeoschools.com/wp-content/uploads/2025/01/Candeo-Schools-Tour-Visitor-and-Observation-Policy.pdf>Candeo Schools Tour, Visitor, and Observation Policy/a>/li>li idmenu-item-3710 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-3710>a hrefhttps://candeoschools.com/about/governance-staff/average-teacher-salary-increase/>Average Teacher Salary Increase/a>/li>/ul>/div> /div> div classcontact-info align-center> 9965 W. Calle Lejos, Peoria, AZ 85383 span classline-sep> | /span> span classnums>623 979 6500 i>(o)/i> 623 979 6510 i>(f)/i>/span> span classcopyright>a hrefhttps://www.coreknowledge.org/candeo-peoria-school/ target_blank classteach-sal>Core Knowledge School of Distinction/a> © 2025 Candeo Schools/span> /div> /div> div classcol-lg-2 align-right> ul classsocial> li> a hrefhttp://instagram.com/candeoschoolsofficial target_blank> !-- Instagram --> svg classsocicon-wrap width16px height16px viewBox0 0 16 16 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> g idGroup-18 strokenone stroke-width1 fillnone fill-ruleevenodd> path dM8.10346938,2.073337 C10.1041666,2.073337 10.3414528,2.08076989 11.1313661,2.11669555 C11.9843475,2.15509884 12.7755096,2.32481659 13.384336,2.92873925 C13.9931624,3.53266191 14.1642583,4.31745166 14.2029734,5.16356279 C14.2391908,5.94711373 14.246684,6.18248872 14.246684,8.16707149 C14.246684,10.1516543 14.2391908,10.3870292 14.2029734,11.1705802 C14.1642583,12.0166913 13.9931624,12.8014811 13.384336,13.4054037 C12.7755096,14.0093264 11.9843475,14.1790441 11.1313661,14.2174474 C10.3414528,14.2533731 10.1041666,14.260806 8.10346938,14.260806 C6.10277211,14.260806 5.86548592,14.2533731 5.07557268,14.2174474 C4.22259126,14.1790441 3.43142914,14.0093264 2.82260273,13.4054037 C2.21377631,12.8014811 2.04268048,12.0166913 2.00396536,11.1705802 C1.967748,10.3870292 1.96025475,10.1516543 1.96025475,8.16707149 C1.96025475,6.18248872 1.967748,5.94711373 2.00396536,5.16356279 C2.04268048,4.31745166 2.21377631,3.53266191 2.82260273,2.92873925 C3.43142914,2.32481659 4.22259126,2.15509884 5.07557268,2.11669555 C5.86548592,2.08076989 6.10277211,2.073337 8.10346938,2.073337 L8.10346938,2.073337 Z M8.10346938,0.734177215 C6.06842806,0.734177215 5.81303318,0.742848925 5.01375338,0.778774581 C3.79610055,0.83390188 2.72643938,1.12997884 1.86783802,1.98166464 C1.00923667,2.83335044 0.710755618,3.8943961 0.655180694,5.10224142 C0.618963328,5.89508347 0.610221205,6.14842128 0.610221205,8.16707149 C0.610221205,10.1857217 0.618963328,10.4390595 0.655180694,11.2319016 C0.710755618,12.4397469 1.00923667,13.5007925 1.86783802,14.3524783 C2.72643938,15.2041641 3.79610055,15.5002411 5.01375338,15.5553684 C5.81303318,15.591294 6.06842806,15.5999658 8.10346938,15.5999658 C10.1385107,15.5999658 10.3939056,15.591294 11.1931854,15.5553684 C12.4108382,15.5002411 13.4804994,15.2041641 14.3391007,14.3524783 C15.1977021,13.5007925 15.4961831,12.4397469 15.5517581,11.2319016 C15.5879754,10.4390595 15.5967175,10.1857217 15.5967175,8.16707149 C15.5967175,6.14842128 15.5879754,5.89508347 15.5517581,5.10224142 C15.4961831,3.8943961 15.1977021,2.83335044 14.3391007,1.98166464 C13.4804994,1.12997884 12.4108382,0.83390188 11.1931854,0.778774581 C10.3939056,0.742848925 10.1385107,0.734177215 8.10346938,0.734177215 L8.10346938,0.734177215 Z idShape fill#313842 classsocicon>/path> path dM8.00949155,4.2570594 C5.88453126,4.2570594 4.16170862,5.96600567 4.16170862,8.07385061 C4.16170862,10.1816955 5.88453126,11.8906418 8.00949155,11.8906418 C10.1344518,11.8906418 11.8572745,10.1816955 11.8572745,8.07385061 C11.8572745,5.96600567 10.1344518,4.2570594 8.00949155,4.2570594 Z M8.00949155,10.551482 C6.63010945,10.551482 5.51174216,9.44212256 5.51174216,8.07385061 C5.51174216,6.70557865 6.63010945,5.59621918 8.00949155,5.59621918 C9.38887366,5.59621918 10.5072409,6.70557865 10.5072409,8.07385061 C10.5072409,9.44212256 9.38887366,10.551482 8.00949155,10.551482 Z idShape fill#313842 classsocicon>/path> ellipse idOval fill#313842 cx12.1638732 cy3.97471265 rx0.89918978 ry0.891947313 classsocicon>/ellipse> /g>/svg> /a> /li> li> a href target_blank> !-- Twitter --> svg classsocicon-wrap width16px height13px viewBox46 2 16 13 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> path dM61.8286016,3.56387858 C61.266608,3.81164172 60.7046144,3.99746407 60.080177,4.05940486 C60.7046144,3.68776015 61.2041643,3.06835229 61.4539392,2.38700365 C60.8295018,2.75864836 60.2050645,3.0064115 59.5181834,3.13029308 C58.9561898,2.51088522 58.1444213,2.13924051 57.270209,2.13924051 C55.5842281,2.13924051 54.210466,3.50193779 54.210466,5.174339 C54.210466,5.42210214 54.210466,5.66986529 54.2729097,5.85568764 C51.6502728,5.73180607 49.4022984,4.49299036 47.9036488,2.63476679 C47.5914301,3.13029308 47.4665426,3.62581936 47.4665426,4.18328643 C47.4665426,5.23627979 48.0285362,6.16539157 48.8403048,6.72285864 C48.3407549,6.72285864 47.841205,6.59897707 47.4665426,6.35121393 C47.4665426,6.35121393 47.4665426,6.35121393 47.4665426,6.41315471 C47.4665426,7.89973357 48.5280861,9.13854928 49.9018483,9.38631242 C49.6520733,9.44825321 49.4022984,9.51019399 49.0900797,9.51019399 C48.9027485,9.51019399 48.7154173,9.51019399 48.5280861,9.44825321 C48.9027485,10.6870689 50.0267357,11.5542399 51.4004979,11.5542399 C50.3389544,12.3594701 49.027636,12.8549964 47.5914301,12.8549964 C47.3416551,12.8549964 47.0918802,12.8549964 46.8421053,12.7930556 C48.2158674,13.6602266 49.8394045,14.1557529 51.5253854,14.1557529 C57.2077652,14.1557529 60.2675082,9.51019399 60.2675082,5.48404293 L60.2675082,5.11239822 C60.8919456,4.67881272 61.3914955,4.12134565 61.8286016,3.56387858 Z idShape strokenone fill#313842 fill-ruleevenodd classsocicon>/path>/svg> /a> /li> li> a hrefhttps://www.facebook.com/CandeoSchools target_blank> !-- Facebook --> svg classsocicon-wrap width9px height14px viewBox89 1 9 14 version1.1 xmlnshttp://www.w3.org/2000/svg xmlns:xlinkhttp://www.w3.org/1999/xlink> !-- Generator: Sketch 41.2 (35397) - http://www.bohemiancoding.com/sketch --> desc>Created with Sketch./desc> defs>/defs> path dM91.7279642,14.6269728 L91.7082757,8.43289427 L89.2105263,8.43289427 L89.2105263,5.95526285 L91.7082757,5.95526285 L91.7082757,4.40674321 C91.7082757,2.10787289 93.1434326,1 95.2108322,1 C96.2011399,1 97.0522542,1.07313349 97.3002932,1.10582583 L97.3002932,3.50827972 L95.8664415,3.50892391 C94.7420733,3.50892391 94.5243695,4.03890166 94.5243695,4.81661158 L94.5243695,5.95526285 L97.7965398,5.95526285 L96.5476651,8.43289427 L94.5243695,8.43289427 L94.5243695,14.6269728 L91.7279642,14.6269728 Z idShape strokenone fill#313842 fill-ruleevenodd classsocicon>/path>/svg> /a> /li> li> a hrefhttps://www.youtube.com/channel/UCrIvlBY1uKvW7uGSXRZ_mXw target_blank> !-- Facebook --> i classion-social-youtube>/i> /a> /li> /ul>script src//code.tidio.co/skyqt5mq6j6rzgo4xvh7y1m3fwf3rrx6.js async>/script> /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\/candeo\/*,\/*\\?(.+)}},{not:{selector_matches:arel~\nofollow\}},{not:{selector_matches:.no-prefetch, .no-prefetch a}}},eagerness:conservative}}/script> script> ( function ( body ) { use strict; body.className body.className.replace( /\btribe-no-js\b/, tribe-js ); } )( document.body ); /script> div classwppopups-whole styledisplay: none>div classspu-bg idspu-bg-3370>/div>div classspu-box spu-animation-fade spu-position-centered idspu-3370 data-id3370 data-parent0 data-settings{"position":{"position":"centered"},"animation":{"animation":"fade"},"colors":{"show_overlay":"yes-color","overlay_color":"rgba(0,0,0, 0.5)","overlay_blur":"2","bg_color":"rgba(238,238,238, 1)","bg_img":"","bg_img_repeat":"no-repeat","bg_img_size":"auto"},"close":{"close_color":"#666","close_hover_color":"#000","close_shadow_color":"#fff","close_size":"30","close_position":"top_right"},"popup_box":{"width":"600px","padding":"25","radius":"0","auto_height":"yes","height":"430px"},"border":{"border_type":"none","border_color":"#eee","border_width":"8","border_radius":"0","border_margin":"14"},"shadow":{"shadow_color":"#666","shadow_type":"outset","shadow_x_offset":"0","shadow_y_offset":"0","shadow_blur":"10","shadow_spread":"1"},"css":{"custom_css":"\/*\r\n\t\t* Add custom CSS for this popup\r\n\t\t* Be sure to start your rules with #spu-3370 { } and use !important when needed to override plugin rules\r\n\t\t*\/"},"id":"3370","field_id":1,"rules":{"group_0":{"rule_0":{"rule":"page","operator":"","value":"9"}},"group_1":{"rule_0":{"rule":"page","operator":"","value":"2340"}},"group_2":{"rule_0":{"rule":"page_type","operator":"","value":"all_pages"}}},"global_rules":{"group_0":{"rule_0":{"rule":"page_type","operator":"","value":"all_pages"}}},"settings":{"popup_title":"Open Enrollment","popup_desc":"","test_mode":"0","powered_link":"0","popup_class":"","popup_hidden_class":"","close_on_conversion":"1","conversion_cookie_name":"spu_conversion_3282","conversion_cookie_duration":"0","conversion_cookie_type":"d","closing_cookie_name":"spu_closing_3282","closing_cookie_duration":"0","closing_cookie_type":"d"},"triggers":{"trigger_0":{"trigger":"seconds","value":"2"}}} data-need_ajax0>div classspu-container >div classspu-content>p> /p>h6 styletext-align: center>span stylefont-family: Minion Pro;font-size: 18pt>Nationally Recognized Excellence:br />A Core Knowledge® School of Distinction and Arizona’s Only Hillsdale Curriculum School/span>/h6>p styletext-align: center;font-family: Minion Pro>em>Enrollment for the 2026-2027 school year is October 20-December 31./em>/p>p styletext-align: center>a classbtn btn-trans-red booktour hrefhttps://candeoschools.com/admissions/admissions relnoopener>LEARN MORE!/a>/p>/div>a href# classspu-close spu-close-popup spu-close-top_right>×/a>span classspu-timer>/span>/div>/div>!--spu-box-->/div>script> /* !CDATA */var tribe_l10n_datatables {aria:{sort_ascending:: activate to sort column ascending,sort_descending:: activate to sort column descending},length_menu:Show _MENU_ entries,empty_table:No data available in table,info:Showing _START_ to _END_ of _TOTAL_ entries,info_empty:Showing 0 to 0 of 0 entries,info_filtered:(filtered from _MAX_ total entries),zero_records:No matching records found,search:Search:,all_selected_text:All items on this page were selected. ,select_all_link:Select all pages,clear_selection:Clear Selection.,pagination:{all:All,next:Next,previous:Previous},select:{rows:{0:,_:: Selected %d rows,1:: Selected 1 row}},datepicker:{dayNames:Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,dayNamesShort:Sun,Mon,Tue,Wed,Thu,Fri,Sat,dayNamesMin:S,M,T,W,T,F,S,monthNames:January,February,March,April,May,June,July,August,September,October,November,December,monthNamesShort:January,February,March,April,May,June,July,August,September,October,November,December,monthNamesMin:Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,nextText:Next,prevText:Prev,currentText:Today,closeText:Done,today:Today,clear:Clear}};/* > */ /script>style idcore-block-supports-inline-css typetext/css>/** * Core styles: block-supports *//style>script typetext/javascript srchttps://candeoschools.com/wp-includes/js/dist/hooks.js?verbe67dc331e61e06d52fa idwp-hooks-js>/script>script typetext/javascript idwppopups-js-extra>/* !CDATA */var wppopups_vars {is_admin:,ajax_url:https:\/\/candeoschools.com\/wp-admin\/admin-ajax.php,pid:31,is_front_page:1,is_blog_page:,is_category:,site_url:https:\/\/candeoschools.com,is_archive:,is_search:,is_singular:1,is_preview:,facebook:,twitter:,val_required:This field is required.,val_url:Please enter a valid URL.,val_email:Please enter a valid email address.,val_number:Please enter a valid number.,val_checklimit:You have exceeded the number of allowed selections: {#}.,val_limit_characters:{count} of {limit} max characters.,val_limit_words:{count} of {limit} max words.,disable_form_reopen:__return_false};/* > *//script>script typetext/javascript srchttps://candeoschools.com/wp-content/plugins/wp-popups-lite/src/assets/js/wppopups.js?ver2.2.0.2 idwppopups-js>/script>script typetext/javascript srchttps://candeoschools.com/wp-content/themes/candeo/dist/scripts/main.js idsage/js-js>/script> script async data-categorystatistics srchttps://www.googletagmanager.com/gtag/js?idUA-99581687-1>/script> script data-categoryfunctional> windowgtag_enable_tcf_support false;window.dataLayer window.dataLayer || ;function gtag(){dataLayer.push(arguments);}gtag(js, new Date());gtag(config, UA-99581687-1, { cookie_flags:secure;samesitenone, anonymize_ip: true}); /script> script> (function(i,s,o,g,r,a,m){iGoogleAnalyticsObjectr;irir||function(){ (ir.qir.q||).push(arguments)},ir.l1*new Date();as.createElement(o), ms.getElementsByTagName(o)0;a.async1;a.srcg;m.parentNode.insertBefore(a,m) })(window,document,script,https://www.google-analytics.com/analytics.js,ga); ga(create, UA-99581687-1, auto); ga(send, pageview);/script> /body>/html>
Port 21
220---------- Welcome to Pure-FTPd privsep TLS ----------220-You are user number 1 of 150 allowed.220-Local time is now 08:04. Server port: 21.220 You will be disconnected after 15 minutes of inactivity.230 Anonymous user logged in257 / is your current location229 Extended Passive mode OK (|||33349|)200 TYPE is now ASCII150 Accepted data connection226-Options: -a -l 226 2 matches total drwxr-xr-x 2 0 0 4096 Oct 2 2024 .drwxr-xr-x 2 0 0 4096 Oct 2 2024 ..
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
]