Help
RSS
API
Feed
Maltego
Contact
Domain > comune.invisiblepress.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
2025-01-21
66.96.134.37
(
ClassC
)
Port 443
HTTP/1.1 200 OKDate: Tue, 21 Jan 2025 00:47:46 GMTContent-Type: text/html; charsetUTF-8Content-Length: 133315Connection: keep-aliveServer: ApacheX-Powered-By: PHP/7.4.10Link: https://invisiblepress.com/index.php?rest_route/>; relhttps://api.w.org/Link: https://invisiblepress.com/index.php?rest_route/wp/v2/pages/1407>; relalternate; titleJSON; typeapplication/jsonLink: https://invisiblepress.com/>; relshortlinkVary: Accept-EncodingReferrer-Policy: no-referrer-when-downgradeAge: 1 !DOCTYPE html>html langen-US>head>meta charsetUTF-8>meta nameviewport contentwidthdevice-width, initial-scale1> link relprofile hrefhttps://gmpg.org/xfn/11> title>THE INVISIBLE PRESS – Writing for the Soul of the World/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//invisiblepress.com />link reldns-prefetch href//fonts.googleapis.com />link relalternate typeapplication/rss+xml titleTHE INVISIBLE PRESS » Feed hrefhttps://invisiblepress.com/?feedrss2 />link relalternate typeapplication/rss+xml titleTHE INVISIBLE PRESS » Comments Feed hrefhttps://invisiblepress.com/?feedcomments-rss2 />script>window._wpemojiSettings {baseUrl:https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/,ext:.png,svgUrl:https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/,svgExt:.svg,source:{wpemoji:https:\/\/invisiblepress.com\/wp-includes\/js\/wp-emoji.js?ver6.7.1,twemoji:https:\/\/invisiblepress.com\/wp-includes\/js\/twemoji.js?ver6.7.1}};/** * @output wp-includes/js/wp-emoji-loader.js *//** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback *//** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji *//** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise undefined ) { return; } var sessionStorageKey wpEmojiSettingsSupports; var tests flag, emoji ; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker ! undefined && typeof OffscreenCanvas ! undefined && typeof URL ! undefined && URL.createObjectURL && typeof Blob ! undefined ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item object && typeof item.timestamp number && new Date().valueOf() item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests object ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data rendered2 index ; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of flag or emoji. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case flag: /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser 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 UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesnt render it correctly (U + N). */ isIdentical emojiSetsRenderIdentically( context, \uD83C\uDDFA\uD83C\uDDF3, // as the sequence of two code points \uD83C\uDDFA\u200B\uD83C\uDDF3 // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser 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: /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) Bird * 0x200D Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical emojiSetsRenderIdentically( context, \uD83D\uDC26\u200D\u2B1B, // as the zero-width joiner sequence \uD83D\uDC26\u200B\u2B1B // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope ! undefined && self instanceof WorkerGlobalScope ) { canvas new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas document.createElement( canvas ); } var context canvas.getContext( 2d, { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it 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 ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script document.createElement( script ); script.src src; script.defer true; document.head.appendChild( script ); } settings.supports { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise new Promise( function ( resolve ) { document.addEventListener( DOMContentLoaded, resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript postMessage( + testEmojiSupports.toString() + ( + JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() .join( , ) + ));; var blob new Blob( workerScript , { type: text/javascript } ); var worker new Worker( URL.createObjectURL( blob ), { name: wpTestEmojiSupports } ); worker.onmessage function ( event ) { supportTests event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports test supportTests test ; settings.supports.everything settings.supports.everything && settings.supports test ; if ( flag ! test ) { settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && settings.supports test ; } } settings.supports.everythingExceptFlag settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady false; settings.readyCallback function () { settings.DOMReady true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } );} )( window, document, window._wpemojiSettings );/script>link relstylesheet idastra-theme-css-css hrefhttps://invisiblepress.com/wp-content/themes/astra/assets/css/minified/style.min.css?ver4.8.0 mediaall />style idastra-theme-css-inline-css>.ast-no-sidebar .entry-content .alignfull {margin-left: calc( -50vw + 50%);margin-right: calc( -50vw + 50%);max-width: 100vw;width: 100vw;}.ast-no-sidebar .entry-content .alignwide {margin-left: calc(-41vw + 50%);margin-right: calc(-41vw + 50%);max-width: unset;width: unset;}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide,.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide,.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{width: 100%;margin-left: auto;margin-right: auto;}.wp-block-gallery,.blocks-gallery-grid {margin: 0;}.wp-block-separator {max-width: 100px;}.wp-block-separator.is-style-wide,.wp-block-separator.is-style-dots {max-width: none;}.entry-content .has-2-columns .wp-block-column:first-child {padding-right: 10px;}.entry-content .has-2-columns .wp-block-column:last-child {padding-left: 10px;}@media (max-width: 782px) {.entry-content .wp-block-columns .wp-block-column {flex-basis: 100%;}.entry-content .has-2-columns .wp-block-column:first-child {padding-right: 0;}.entry-content .has-2-columns .wp-block-column:last-child {padding-left: 0;}}body .entry-content .wp-block-latest-posts {margin-left: 0;}body .entry-content .wp-block-latest-posts li {list-style: none;}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts {margin-left: 0;}.ast-header-break-point .entry-content .alignwide {margin-left: auto;margin-right: auto;}.entry-content .blocks-gallery-item img {margin-bottom: auto;}.wp-block-pullquote {border-top: 4px solid #555d66;border-bottom: 4px solid #555d66;color: #40464d;}:root{--ast-post-nav-space:0;--ast-container-default-xlg-padding:6.67em;--ast-container-default-lg-padding:5.67em;--ast-container-default-slg-padding:4.34em;--ast-container-default-md-padding:3.34em;--ast-container-default-sm-padding:6.67em;--ast-container-default-xs-padding:2.4em;--ast-container-default-xxs-padding:1.4em;--ast-code-block-background:#EEEEEE;--ast-comment-inputs-background:#FAFAFA;--ast-normal-container-width:1200px;--ast-narrow-container-width:750px;--ast-blog-title-font-weight:normal;--ast-blog-meta-weight:inherit;}html{font-size:93.75%;}a,.page-title{color:#4e4e4e;}a:hover,a:focus{color:#0084d6;}body,button,input,select,textarea,.ast-button,.ast-custom-button{font-family:Lato,sans-serif;font-weight:400;font-size:15px;font-size:1rem;}blockquote{color:#000000;}h1,.entry-content h1,.entry-content h1 a,h2,.entry-content h2,.entry-content h2 a,h3,.entry-content h3,.entry-content h3 a,h4,.entry-content h4,.entry-content h4 a,h5,.entry-content h5,.entry-content h5 a,h6,.entry-content h6,.entry-content h6 a,.site-title,.site-title a{font-family:Lato,sans-serif;font-weight:700;}.site-title{font-size:35px;font-size:2.3333333333333rem;display:none;}header .custom-logo-link img{max-width:140px;width:140px;}.astra-logo-svg{width:140px;}.site-header .site-description{font-size:15px;font-size:1rem;display:none;}.entry-title{font-size:30px;font-size:2rem;}.archive .ast-article-post .ast-article-inner,.blog .ast-article-post .ast-article-inner,.archive .ast-article-post .ast-article-inner:hover,.blog .ast-article-post .ast-article-inner:hover{overflow:hidden;}h1,.entry-content h1,.entry-content h1 a{font-size:66px;font-size:4.4rem;font-family:Lato,sans-serif;line-height:1.4em;}h2,.entry-content h2,.entry-content h2 a{font-size:42px;font-size:2.8rem;font-family:Lato,sans-serif;line-height:1.3em;}h3,.entry-content h3,.entry-content h3 a{font-size:30px;font-size:2rem;font-family:Lato,sans-serif;line-height:1.3em;}h4,.entry-content h4,.entry-content h4 a{font-size:20px;font-size:1.3333333333333rem;line-height:1.2em;font-family:Lato,sans-serif;}h5,.entry-content h5,.entry-content h5 a{font-size:18px;font-size:1.2rem;line-height:1.2em;font-family:Lato,sans-serif;}h6,.entry-content h6,.entry-content h6 a{font-size:15px;font-size:1rem;line-height:1.25em;font-family:Lato,sans-serif;}::selection{background-color:#54595f;color:#ffffff;}body,h1,.entry-title a,.entry-content h1,.entry-content h1 a,h2,.entry-content h2,.entry-content h2 a,h3,.entry-content h3,.entry-content h3 a,h4,.entry-content h4,.entry-content h4 a,h5,.entry-content h5,.entry-content h5 a,h6,.entry-content h6,.entry-content h6 a{color:#333333;}.tagcloud a:hover,.tagcloud a:focus,.tagcloud a.current-item{color:#ffffff;border-color:#4e4e4e;background-color:#4e4e4e;}input:focus,inputtypetext:focus,inputtypeemail:focus,inputtypeurl:focus,inputtypepassword:focus,inputtypereset:focus,inputtypesearch:focus,textarea:focus{border-color:#4e4e4e;}inputtyperadio:checked,inputtypereset,inputtypecheckbox:checked,inputtypecheckbox:hover:checked,inputtypecheckbox:focus:checked,inputtyperange::-webkit-slider-thumb{border-color:#4e4e4e;background-color:#4e4e4e;box-shadow:none;}.site-footer a:hover + .post-count,.site-footer a:focus + .post-count{background:#4e4e4e;border-color:#4e4e4e;}.single .nav-links .nav-previous,.single .nav-links .nav-next{color:#4e4e4e;}.entry-meta,.entry-meta *{line-height:1.45;color:#4e4e4e;}.entry-meta a:not(.ast-button):hover,.entry-meta a:not(.ast-button):hover *,.entry-meta a:not(.ast-button):focus,.entry-meta a:not(.ast-button):focus *,.page-links > .page-link,.page-links .page-link:hover,.post-navigation a:hover{color:#0084d6;}#cat option,.secondary .calendar_wrap thead a,.secondary .calendar_wrap thead a:visited{color:#4e4e4e;}.secondary .calendar_wrap #today,.ast-progress-val span{background:#4e4e4e;}.secondary a:hover + .post-count,.secondary a:focus + .post-count{background:#4e4e4e;border-color:#4e4e4e;}.calendar_wrap #today > a{color:#ffffff;}.page-links .page-link,.single .post-navigation a{color:#4e4e4e;}.ast-search-menu-icon .search-form button.search-submit{padding:0 4px;}.ast-search-menu-icon form.search-form{padding-right:0;}.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-form,.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-field:focus{transition:all 0.2s;}.search-form input.search-field:focus{outline:none;}.widget-title,.widget .wp-block-heading{font-size:21px;font-size:1.4rem;color:#333333;}.ast-search-menu-icon.slide-search a:focus-visible:focus-visible,.astra-search-icon:focus-visible,#close:focus-visible,a:focus-visible,.ast-menu-toggle:focus-visible,.site .skip-link:focus-visible,.wp-block-loginout input:focus-visible,.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,.ast-header-navigation-arrow:focus-visible,.woocommerce .wc-proceed-to-checkout > .checkout-button:focus-visible,.woocommerce .woocommerce-MyAccount-navigation ul li a:focus-visible,.ast-orders-table__row .ast-orders-table__cell:focus-visible,.woocommerce .woocommerce-order-details .order-again > .button:focus-visible,.woocommerce .woocommerce-message a.button.wc-forward:focus-visible,.woocommerce #minus_qty:focus-visible,.woocommerce #plus_qty:focus-visible,a#ast-apply-coupon:focus-visible,.woocommerce .woocommerce-info a:focus-visible,.woocommerce .astra-shop-summary-wrap a:focus-visible,.woocommerce a.wc-forward:focus-visible,#ast-apply-coupon:focus-visible,.woocommerce-js .woocommerce-mini-cart-item a.remove:focus-visible,#close:focus-visible,.button.search-submit:focus-visible,#search_submit:focus,.normal-search:focus-visible,.ast-header-account-wrap:focus-visible,.woocommerce .ast-on-card-button.ast-quick-view-trigger:focus{outline-style:dotted;outline-color:inherit;outline-width:thin;}input:focus,inputtypetext:focus,inputtypeemail:focus,inputtypeurl:focus,inputtypepassword:focus,inputtypereset:focus,inputtypesearch:focus,inputtypenumber:focus,textarea:focus,.wp-block-search__input:focus,data-sectionsection-header-mobile-trigger .ast-button-wrap .ast-mobile-menu-trigger-minimal:focus,.ast-mobile-popup-drawer.active .menu-toggle-close:focus,.woocommerce-ordering select.orderby:focus,#ast-scroll-top:focus,#coupon_code:focus,.woocommerce-page #comment:focus,.woocommerce #reviews #respond input#submit:focus,.woocommerce a.add_to_cart_button:focus,.woocommerce .button.single_add_to_cart_button:focus,.woocommerce .woocommerce-cart-form button:focus,.woocommerce .woocommerce-cart-form__cart-item .quantity .qty:focus,.woocommerce .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper > .input-text:focus,.woocommerce #order_comments:focus,.woocommerce #place_order:focus,.woocommerce .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper > .input-text:focus,.woocommerce .woocommerce-MyAccount-content form button:focus,.woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row .woocommerce-Input.input-text:focus,.woocommerce .ast-woocommerce-container .woocommerce-pagination ul.page-numbers li a:focus,body #content .woocommerce form .form-row .select2-container--default .select2-selection--single:focus,#ast-coupon-code:focus,.woocommerce.woocommerce-js .quantity inputtypenumber:focus,.woocommerce-js .woocommerce-mini-cart-item .quantity inputtypenumber:focus,.woocommerce p#ast-coupon-trigger:focus{border-style:dotted;border-color:inherit;border-width:thin;}input{outline:none;}.main-header-menu .menu-link,.ast-header-custom-item a{color:#333333;}.main-header-menu .menu-item:hover > .menu-link,.main-header-menu .menu-item:hover > .ast-menu-toggle,.main-header-menu .ast-masthead-custom-menu-items a:hover,.main-header-menu .menu-item.focus > .menu-link,.main-header-menu .menu-item.focus > .ast-menu-toggle,.main-header-menu .current-menu-item > .menu-link,.main-header-menu .current-menu-ancestor > .menu-link,.main-header-menu .current-menu-item > .ast-menu-toggle,.main-header-menu .current-menu-ancestor > .ast-menu-toggle{color:#4e4e4e;}.header-main-layout-3 .ast-main-header-bar-alignment{margin-right:auto;}.header-main-layout-2 .site-header-section-left .ast-site-identity{text-align:left;}.site-logo-img img{ transition:all 0.2s linear;}body .ast-oembed-container *{position:absolute;top:0;width:100%;height:100%;left:0;}body .wp-block-embed-pocket-casts .ast-oembed-container *{position:unset;}.ast-header-break-point .ast-mobile-menu-buttons-minimal.menu-toggle{background:transparent;color:#c4c4c4;}.ast-header-break-point .ast-mobile-menu-buttons-outline.menu-toggle{background:transparent;border:1px solid #c4c4c4;color:#c4c4c4;}.ast-header-break-point .ast-mobile-menu-buttons-fill.menu-toggle{background:#c4c4c4;color:#000000;}.ast-single-post-featured-section + article {margin-top: 2em;}.site-content .ast-single-post-featured-section img {width: 100%;overflow: hidden;object-fit: cover;}.site > .ast-single-related-posts-container {margin-top: 0;}@media (min-width: 922px) {.ast-desktop .ast-container--narrow {max-width: var(--ast-narrow-container-width);margin: 0 auto;}}.ast-page-builder-template .hentry {margin: 0;}.ast-page-builder-template .site-content > .ast-container {max-width: 100%;padding: 0;}.ast-page-builder-template .site .site-content #primary {padding: 0;margin: 0;}.ast-page-builder-template .no-results {text-align: center;margin: 4em auto;}.ast-page-builder-template .ast-pagination {padding: 2em;}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail {margin-top: 0;}.ast-page-builder-template .entry-header.ast-header-without-markup {margin-top: 0;margin-bottom: 0;}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta {margin-bottom: 0;}.ast-page-builder-template.single .post-navigation {padding-bottom: 2em;}.ast-page-builder-template.single-post .site-content > .ast-container {max-width: 100%;}.ast-page-builder-template .entry-header {margin-top: 4em;margin-left: auto;margin-right: auto;padding-left: 20px;padding-right: 20px;}.single.ast-page-builder-template .entry-header {padding-left: 20px;padding-right: 20px;}.ast-page-builder-template .ast-archive-description {margin: 4em auto 0;padding-left: 20px;padding-right: 20px;}.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {margin-left: 0;margin-right: 0;}.ast-small-footer{color:#000000;}.ast-small-footer > .ast-footer-overlay{background-color:#ffffff;;}.ast-small-footer a{color:#434343;}.ast-small-footer a:hover{color:#3197d6;}.footer-adv .footer-adv-overlay{border-top-style:solid;}.wp-block-buttons.aligncenter{justify-content:center;}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{margin-left:0px;}}.wp-block-image.aligncenter{margin-left:auto;margin-right:auto;}.wp-block-table.aligncenter{margin-left:auto;margin-right:auto;}.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button,.ast-outline-button,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button{border-color:#f4f4f4;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;font-family:inherit;font-weight:inherit;line-height:1em;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;}.wp-block-button.is-style-outline .wp-block-button__link:hover,.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:focus,.wp-block-buttons .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):hover,.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color):hover,.ast-outline-button:hover,.ast-outline-button:focus,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button:hover,.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button:focus{background-color:#000000;}.wp-block-button .wp-block-button__link.wp-element-button.is-style-outline:not(.has-background),.wp-block-button.is-style-outline>.wp-block-button__link.wp-element-button:not(.has-background),.ast-outline-button{background-color:#f4f4f4;}.entry-contentast-blocks-layout > figure{margin-bottom:1em;}@media (max-width:921px){.ast-separate-container #primary,.ast-separate-container #secondary{padding:1.5em 0;}#primary,#secondary{padding:1.5em 0;margin:0;}.ast-left-sidebar #content > .ast-container{display:flex;flex-direction:column-reverse;width:100%;}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{padding:1.5em 2.14em;}.ast-author-box img.avatar{margin:20px 0 0 0;}}@media (min-width:922px){.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary{border:0;}.search-no-results.ast-separate-container #primary{margin-bottom:4em;}}.elementor-button-wrapper .elementor-button{border-style:solid;text-decoration:none;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;}body .elementor-button.elementor-size-sm,body .elementor-button.elementor-size-xs,body .elementor-button.elementor-size-md,body .elementor-button.elementor-size-lg,body .elementor-button.elementor-size-xl,body .elementor-button{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;padding-top:16px;padding-right:25px;padding-bottom:16px;padding-left:25px;}.elementor-button-wrapper .elementor-button{border-color:#f4f4f4;background-color:#f4f4f4;}.elementor-button-wrapper .elementor-button:hover,.elementor-button-wrapper .elementor-button:focus{color:#ffffff;background-color:#000000;border-color:#000000;}.wp-block-button .wp-block-button__link ,.elementor-button-wrapper .elementor-button,.elementor-button-wrapper .elementor-button:visited{color:#000000;}.elementor-button-wrapper .elementor-button{line-height:1em;}.wp-block-button .wp-block-button__link:hover,.wp-block-button .wp-block-button__link:focus{color:#ffffff;background-color:#000000;border-color:#000000;}.elementor-widget-heading h1.elementor-heading-title{line-height:1.4em;}.elementor-widget-heading h2.elementor-heading-title{line-height:1.3em;}.elementor-widget-heading h3.elementor-heading-title{line-height:1.3em;}.elementor-widget-heading h4.elementor-heading-title{line-height:1.2em;}.elementor-widget-heading h5.elementor-heading-title{line-height:1.2em;}.elementor-widget-heading h6.elementor-heading-title{line-height:1.25em;}.wp-block-button .wp-block-button__link{border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;border-color:#f4f4f4;background-color:#f4f4f4;color:#000000;font-family:inherit;font-weight:inherit;line-height:1em;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;padding-top:16px;padding-right:25px;padding-bottom:16px;padding-left:25px;}.menu-toggle,button,.ast-button,.ast-custom-button,.button,input#submit,inputtypebutton,inputtypesubmit,inputtypereset{border-style:solid;border-top-width:0;border-right-width:0;border-left-width:0;border-bottom-width:0;color:#000000;border-color:#f4f4f4;background-color:#f4f4f4;padding-top:16px;padding-right:25px;padding-bottom:16px;padding-left:25px;font-family:inherit;font-weight:inherit;line-height:1em;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;}button:focus,.menu-toggle:hover,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,inputtypereset:hover,inputtypereset:focus,input#submit:hover,input#submit:focus,inputtypebutton:hover,inputtypebutton:focus,inputtypesubmit:hover,inputtypesubmit:focus{color:#ffffff;background-color:#000000;border-color:#000000;}@media (max-width:921px){.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon{display:inline-block;}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon{margin:0;}.ast-comment-avatar-wrap img{max-width:2.5em;}.ast-comment-meta{padding:0 1.8888em 1.3333em;}.ast-separate-container .ast-comment-list li.depth-1{padding:1.5em 2.14em;}.ast-separate-container .comment-respond{padding:2em 2.14em;}}@media (min-width:544px){.ast-container{max-width:100%;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-title,.ast-separate-container .ast-archive-description{padding:1.5em 1em;}.ast-separate-container #content .ast-container{padding-left:0.54em;padding-right:0.54em;}.ast-separate-container .ast-comment-list .bypostauthor{padding:.5em;}.ast-search-menu-icon.ast-dropdown-active .search-field{width:170px;}.site-branding img,.site-header .site-logo-img .custom-logo-link img{max-width:100%;}} #ast-mobile-header .ast-site-header-cart-li a{pointer-events:none;}body,.ast-separate-container{background-color:#f9f9f9;}.ast-no-sidebar.ast-separate-container .entry-content .alignfull {margin-left: -6.67em;margin-right: -6.67em;width: auto;}@media (max-width: 1200px) {.ast-no-sidebar.ast-separate-container .entry-content .alignfull {margin-left: -2.4em;margin-right: -2.4em;}}@media (max-width: 768px) {.ast-no-sidebar.ast-separate-container .entry-content .alignfull {margin-left: -2.14em;margin-right: -2.14em;}}@media (max-width: 544px) {.ast-no-sidebar.ast-separate-container .entry-content .alignfull {margin-left: -1em;margin-right: -1em;}}.ast-no-sidebar.ast-separate-container .entry-content .alignwide {margin-left: -20px;margin-right: -20px;}.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide {margin-left: auto;margin-right: auto;width: 100%;}@media (max-width:921px){.site-title{display:none;}.site-header .site-description{display:none;}h1,.entry-content h1,.entry-content h1 a{font-size:50px;}h2,.entry-content h2,.entry-content h2 a{font-size:25px;}h3,.entry-content h3,.entry-content h3 a{font-size:20px;}.astra-logo-svg{width:120px;}header .custom-logo-link img,.ast-header-break-point .site-logo-img .custom-mobile-logo-link img{max-width:120px;width:120px;}}@media (max-width:544px){.site-title{display:none;}.site-header .site-description{display:none;}h1,.entry-content h1,.entry-content h1 a{font-size:30px;}h2,.entry-content h2,.entry-content h2 a{font-size:25px;}h3,.entry-content h3,.entry-content h3 a{font-size:20px;}header .custom-logo-link img,.ast-header-break-point .site-branding img,.ast-header-break-point .custom-logo-link img{max-width:120px;width:120px;}.astra-logo-svg{width:120px;}.ast-header-break-point .site-logo-img .custom-mobile-logo-link img{max-width:120px;}}@media (max-width:921px){html{font-size:85.5%;}}@media (max-width:544px){html{font-size:85.5%;}}@media (min-width:922px){.ast-container{max-width:1240px;}}@font-face {font-family: Astra;src: url(https://invisiblepress.com/wp-content/themes/astra/assets/fonts/astra.woff) format(woff),url(https://invisiblepress.com/wp-content/themes/astra/assets/fonts/astra.ttf) format(truetype),url(https://invisiblepress.com/wp-content/themes/astra/assets/fonts/astra.svg#astra) format(svg);font-weight: normal;font-style: normal;font-display: fallback;}@media (max-width:921px) {.main-header-bar .main-header-bar-navigation{display:none;}}.ast-desktop .main-header-menu.submenu-with-border .sub-menu,.ast-desktop .main-header-menu.submenu-with-border .astra-full-megamenu-wrapper{border-color:#dddddd;}.ast-desktop .main-header-menu.submenu-with-border .sub-menu{border-top-width:1px;border-right-width:1px;border-left-width:1px;border-bottom-width:1px;border-style:solid;}.ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu{top:-1px;}.ast-desktop .main-header-menu.submenu-with-border .sub-menu .menu-link,.ast-desktop .main-header-menu.submenu-with-border .children .menu-link{border-bottom-width:1px;border-style:solid;border-color:#eaeaea;}@media (min-width:922px){.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu,.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu{margin-left:-2px;}}.ast-small-footer{border-top-style:solid;border-top-width:1px;border-top-color:rgba(122,122,122,0.13);}.site .comments-area{padding-bottom:3em;}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon {display: none;}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form {padding: 0;display: block;overflow: hidden;}.ast-header-break-point .ast-header-custom-item .widget:last-child {margin-bottom: 1em;}.ast-header-custom-item .widget {margin: 0.5em;display: inline-block;vertical-align: middle;}.ast-header-custom-item .widget p {margin-bottom: 0;}.ast-header-custom-item .widget li {width: auto;}.ast-header-custom-item-inside .button-custom-menu-item .menu-link {display: none;}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link {display: none;}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link {display: block;}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon {margin-right: 1em;}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field {width: 100%;padding-right: 5.5em;}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit {display: block;position: absolute;height: 100%;top: 0;right: 0;padding: 0 1em;border-radius: 0;}.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items {padding-left: 20px;padding-right: 20px;margin-bottom: 1em;margin-top: 1em;}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item {padding-left: 0;padding-right: 0;margin-top: 0;margin-bottom: 0;}.astra-icon-down_arrow::after {content: \e900;font-family: Astra;}.astra-icon-close::after {content: \e5cd;font-family: Astra;}.astra-icon-drag_handle::after {content: \e25d;font-family: Astra;}.astra-icon-format_align_justify::after {content: \e235;font-family: Astra;}.astra-icon-menu::after {content: \e5d2;font-family: Astra;}.astra-icon-reorder::after {content: \e8fe;font-family: Astra;}.astra-icon-search::after {content: \e8b6;font-family: Astra;}.astra-icon-zoom_in::after {content: \e56b;font-family: Astra;}.astra-icon-check-circle::after {content: \e901;font-family: Astra;}.astra-icon-shopping-cart::after {content: \f07a;font-family: Astra;}.astra-icon-shopping-bag::after {content: \f290;font-family: Astra;}.astra-icon-shopping-basket::after {content: \f291;font-family: Astra;}.astra-icon-circle-o::after {content: \e903;font-family: Astra;}.astra-icon-certificate::after {content: \e902;font-family: Astra;}blockquote {padding: 1.2em;}:root .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-color{color:var(--ast-global-color-0);}:root .wp-block-button .has-ast-global-color-0-background-color{background-color:var(--ast-global-color-0);}:root .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-color{color:var(--ast-global-color-1);}:root .wp-block-button .has-ast-global-color-1-background-color{background-color:var(--ast-global-color-1);}:root .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-color{color:var(--ast-global-color-2);}:root .wp-block-button .has-ast-global-color-2-background-color{background-color:var(--ast-global-color-2);}:root .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-color{color:var(--ast-global-color-3);}:root .wp-block-button .has-ast-global-color-3-background-color{background-color:var(--ast-global-color-3);}:root .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-color{color:var(--ast-global-color-4);}:root .wp-block-button .has-ast-global-color-4-background-color{background-color:var(--ast-global-color-4);}:root .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-color{color:var(--ast-global-color-5);}:root .wp-block-button .has-ast-global-color-5-background-color{background-color:var(--ast-global-color-5);}:root .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-color{color:var(--ast-global-color-6);}:root .wp-block-button .has-ast-global-color-6-background-color{background-color:var(--ast-global-color-6);}:root .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-color{color:var(--ast-global-color-7);}:root .wp-block-button .has-ast-global-color-7-background-color{background-color:var(--ast-global-color-7);}:root .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-color{color:var(--ast-global-color-8);}:root .wp-block-button .has-ast-global-color-8-background-color{background-color:var(--ast-global-color-8);}:root{--ast-global-color-0:#0170B9;--ast-global-color-1:#3a3a3a;--ast-global-color-2:#3a3a3a;--ast-global-color-3:#4B4F58;--ast-global-color-4:#F5F5F5;--ast-global-color-5:#FFFFFF;--ast-global-color-6:#E5E5E5;--ast-global-color-7:#424242;--ast-global-color-8:#000000;}:root {--ast-border-color : #dddddd;}.ast-single-entry-banner {-js-display: flex;display: flex;flex-direction: column;justify-content: center;text-align: center;position: relative;background: #eeeeee;}.ast-single-entry-bannerdata-banner-layoutlayout-1 {max-width: 1200px;background: inherit;padding: 20px 0;}.ast-single-entry-bannerdata-banner-width-typecustom {margin: 0 auto;width: 100%;}.ast-single-entry-banner + .site-content .entry-header {margin-bottom: 0;}.site .ast-author-avatar {--ast-author-avatar-size: ;}a.ast-underline-text {text-decoration: underline;}.ast-container > .ast-terms-link {position: relative;display: block;}a.ast-button.ast-badge-tax {padding: 4px 8px;border-radius: 3px;font-size: inherit;}header.entry-header .entry-title{font-size:30px;font-size:2rem;}header.entry-header > *:not(:last-child){margin-bottom:10px;}.ast-archive-entry-banner {-js-display: flex;display: flex;flex-direction: column;justify-content: center;text-align: center;position: relative;background: #eeeeee;}.ast-archive-entry-bannerdata-banner-width-typecustom {margin: 0 auto;width: 100%;}.ast-archive-entry-bannerdata-banner-layoutlayout-1 {background: inherit;padding: 20px 0;text-align: left;}body.archive .ast-archive-description{max-width:1200px;width:100%;text-align:left;padding-top:3em;padding-right:3em;padding-bottom:3em;padding-left:3em;}body.archive .ast-archive-description .ast-archive-title,body.archive .ast-archive-description .ast-archive-title *{font-size:40px;font-size:2.6666666666667rem;}body.archive .ast-archive-description > *:not(:last-child){margin-bottom:10px;}@media (max-width:921px){body.archive .ast-archive-description{text-align:left;}}@media (max-width:544px){body.archive .ast-archive-description{text-align:left;}}.ast-theme-transparent-header #masthead .site-logo-img .transparent-custom-logo .astra-logo-svg{width:268px;}.ast-theme-transparent-header #masthead .site-logo-img .transparent-custom-logo img{ max-width:268px; width:268px;}@media (min-width:921px){.ast-theme-transparent-header #masthead{position:absolute;left:0;right:0;}.ast-theme-transparent-header .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .main-header-bar{background:none;}body.elementor-editor-active.ast-theme-transparent-header #masthead,.fl-builder-edit .ast-theme-transparent-header #masthead,body.vc_editor.ast-theme-transparent-header #masthead,body.brz-ed.ast-theme-transparent-header #masthead{z-index:0;}.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .custom-mobile-logo-link{display:none;}.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo{display:inline-block;}.ast-theme-transparent-header .ast-above-header,.ast-theme-transparent-header .ast-above-header.ast-above-header-bar{background-image:none;background-color:transparent;}.ast-theme-transparent-header .ast-below-header,.ast-theme-transparent-header .ast-below-header.ast-below-header-bar{background-image:none;background-color:transparent;}}.ast-theme-transparent-header .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .main-header-bar-wrap .main-header-menu,.ast-theme-transparent-header.ast-header-break-point .main-header-bar-wrap .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .ast-mobile-header-wrap .main-header-bar{background-color:rgba(0,0,0,0.07);}.ast-theme-transparent-header .main-header-bar .ast-search-menu-icon form{background-color:rgba(0,0,0,0.07);}.ast-theme-transparent-header .ast-above-header,.ast-theme-transparent-header .ast-above-header.ast-above-header-bar{background-color:rgba(0,0,0,0.07);}.ast-theme-transparent-header .ast-below-header,.ast-theme-transparent-header .ast-below-header.ast-below-header-bar{background-color:rgba(0,0,0,0.07);}.ast-theme-transparent-header .site-title a,.ast-theme-transparent-header .site-title a:focus,.ast-theme-transparent-header .site-title a:hover,.ast-theme-transparent-header .site-title a:visited{color:#ffffff;}.ast-theme-transparent-header .site-header .site-description{color:#ffffff;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item > .ast-menu-toggle,.ast-theme-transparent-header .main-header-menu .menu-item .sub-menu .menu-link,.ast-header-break-point.ast-flyout-menu-enable.ast-header-break-point .main-header-bar-navigation .main-header-menu .menu-item .sub-menu .menu-link{color:#333333;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-link:hover,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item:hover > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item.focus > .menu-item,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item.current-menu-item > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item.current-menu-item > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item:hover > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-item.focus > .ast-menu-toggle,.ast-theme-transparent-header .main-header-menu .menu-item .sub-menu .menu-item:hover > .menu-link,.ast-header-break-point.ast-flyout-menu-enable.ast-header-break-point .main-header-bar-navigation .main-header-menu .menu-item .sub-menu .menu-link{color:#000000;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-link,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .menu-item > .menu-link,.ast-theme-transparent-header .ast-masthead-custom-menu-items,.ast-theme-transparent-header .ast-masthead-custom-menu-items a,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item > .ast-menu-toggle,.ast-theme-transparent-header .ast-above-header-navigation a,.ast-header-break-point.ast-theme-transparent-header .ast-above-header-navigation a,.ast-header-break-point.ast-theme-transparent-header .ast-above-header-navigation > ul.ast-above-header-menu > .menu-item-has-children:not(.current-menu-item) > .ast-menu-toggle,.ast-theme-transparent-header .ast-below-header-menu,.ast-theme-transparent-header .ast-below-header-menu a,.ast-header-break-point.ast-theme-transparent-header .ast-below-header-menu a,.ast-header-break-point.ast-theme-transparent-header .ast-below-header-menu,.ast-theme-transparent-header .main-header-menu .menu-link{color:#cecece;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item:hover > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item:hover > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .ast-masthead-custom-menu-items a:hover,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .focus > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .focus > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-item > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-ancestor > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-item > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-ancestor > .ast-menu-toggle,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-item > .menu-link,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-ancestor > .menu-link,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-item > .ast-menu-toggle,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-ancestor > .ast-menu-toggle,.ast-theme-transparent-header .main-header-menu .menu-item:hover > .menu-link,.ast-theme-transparent-header .main-header-menu .current-menu-item > .menu-link,.ast-theme-transparent-header .main-header-menu .current-menu-ancestor > .menu-link{color:#ffffff;}.ast-theme-transparent-header div.ast-masthead-custom-menu-items,.ast-theme-transparent-header div.ast-masthead-custom-menu-items .widget,.ast-theme-transparent-header div.ast-masthead-custom-menu-items .widget-title,.ast-theme-transparent-header .site-header-section CLASS*ast-header-html- .ast-builder-html-element{color:#000000;}.ast-theme-transparent-header div.ast-masthead-custom-menu-items a,.ast-theme-transparent-header div.ast-masthead-custom-menu-items .widget a,.ast-theme-transparent-header .site-header-section CLASS*ast-header-html- .ast-builder-html-element a{color:#1e73be;}.ast-theme-transparent-header div.ast-masthead-custom-menu-items a:hover,.ast-theme-transparent-header div.ast-masthead-custom-menu-items .widget a:hover,.ast-theme-transparent-header .site-header-section CLASS*ast-header-html- .ast-builder-html-element a:hover{color:#000000;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-link,.ast-theme-transparent-header .main-header-menu .menu-item .sub-menu .menu-link{background-color:transparent;}@media (max-width:921px){.ast-theme-transparent-header #masthead{position:absolute;left:0;right:0;}.ast-theme-transparent-header .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .main-header-bar{background:none;}body.elementor-editor-active.ast-theme-transparent-header #masthead,.fl-builder-edit .ast-theme-transparent-header #masthead,body.vc_editor.ast-theme-transparent-header #masthead,body.brz-ed.ast-theme-transparent-header #masthead{z-index:0;}.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .custom-mobile-logo-link{display:none;}.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo{display:inline-block;}.ast-theme-transparent-header .ast-above-header,.ast-theme-transparent-header .ast-above-header.ast-above-header-bar{background-image:none;background-color:transparent;}.ast-theme-transparent-header .ast-below-header,.ast-theme-transparent-header .ast-below-header.ast-below-header-bar{background-image:none;background-color:transparent;}}@media (max-width:921px){.ast-theme-transparent-header .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .main-header-bar-wrap .main-header-menu,.ast-theme-transparent-header.ast-header-break-point .main-header-bar-wrap .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .ast-mobile-header-wrap .main-header-bar{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header .main-header-bar .ast-search-menu-icon form{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header.ast-header-break-point .ast-above-header,.ast-theme-transparent-header.ast-header-break-point .ast-above-header-bar .main-header-menu{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header.ast-header-break-point .ast-below-header,.ast-theme-transparent-header.ast-header-break-point .ast-below-header-bar .main-header-menu{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header.ast-header-break-point .ast-builder-menu .main-header-menu,.ast-theme-transparent-header.ast-header-break-point .ast-builder-menu.main-header-menu .sub-menu,.ast-theme-transparent-header.ast-header-break-point .ast-builder-menu.main-header-menu,.ast-theme-transparent-header.ast-header-break-point .ast-builder-menu .main-header-bar-wrap .main-header-menu,.ast-flyout-menu-enable.ast-header-break-point.ast-theme-transparent-header .main-header-bar-navigation .site-navigation,.ast-fullscreen-menu-enable.ast-header-break-point.ast-theme-transparent-header .main-header-bar-navigation .site-navigation,.ast-flyout-above-menu-enable.ast-header-break-point.ast-theme-transparent-header .ast-above-header-navigation-wrap .ast-above-header-navigation,.ast-flyout-below-menu-enable.ast-header-break-point.ast-theme-transparent-header .ast-below-header-navigation-wrap .ast-below-header-actual-nav,.ast-fullscreen-above-menu-enable.ast-header-break-point.ast-theme-transparent-header .ast-above-header-navigation-wrap,.ast-fullscreen-below-menu-enable.ast-header-break-point.ast-theme-transparent-header .ast-below-header-navigation-wrap,.ast-theme-transparent-header .main-header-menu .menu-link{background-color:#ffffff;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-link,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .menu-item > .menu-link,.ast-theme-transparent-header .ast-masthead-custom-menu-items,.ast-theme-transparent-header .ast-masthead-custom-menu-items a,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item > .ast-menu-toggle,.ast-theme-transparent-header .main-header-menu .menu-link{color:#7c7c7c;}.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item:hover > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item:hover > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .ast-masthead-custom-menu-items a:hover,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .focus > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .focus > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-item > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-ancestor > .menu-link,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-item > .ast-menu-toggle,.ast-theme-transparent-header .ast-builder-menu .main-header-menu .current-menu-ancestor > .ast-menu-toggle,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-item > .menu-link,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-ancestor > .menu-link,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-item > .ast-menu-toggle,.ast-theme-transparent-header CLASS*ast-builder-menu- .main-header-menu .current-menu-ancestor > .ast-menu-toggle,.ast-theme-transparent-header .main-header-menu .menu-item:hover > .menu-link,.ast-theme-transparent-header .main-header-menu .current-menu-item > .menu-link,.ast-theme-transparent-header .main-header-menu .current-menu-ancestor > .menu-link{color:#000000;}}@media (max-width:544px){.ast-theme-transparent-header .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .main-header-bar-wrap .main-header-menu,.ast-theme-transparent-header.ast-header-break-point .main-header-bar-wrap .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .ast-mobile-header-wrap .main-header-bar{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header .main-header-bar .ast-search-menu-icon form{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header.ast-header-break-point .ast-above-header,.ast-theme-transparent-header.ast-header-break-point .ast-above-header-bar .main-header-menu{background-color:rgba(0,0,0,0.6);}.ast-theme-transparent-header.ast-header-break-point .ast-below-header,.ast-theme-transparent-header.ast-header-break-point .ast-below-header-bar .main-header-menu{background-color:rgba(0,0,0,0.6);}}.ast-theme-transparent-header .main-header-bar,.ast-theme-transparent-header.ast-header-break-point .main-header-bar{border-bottom-width:0;border-bottom-style:solid;border-bottom-color:rgba(0,0,0,0);}.ast-breadcrumbs .trail-browse,.ast-breadcrumbs .trail-items,.ast-breadcrumbs .trail-items li{display:inline-block;margin:0;padding:0;border:none;background:inherit;text-indent:0;text-decoration:none;}.ast-breadcrumbs .trail-browse{font-size:inherit;font-style:inherit;font-weight:inherit;color:inherit;}.ast-breadcrumbs .trail-items{list-style:none;}.trail-items li::after{padding:0 0.3em;content:\00bb;}.trail-items li:last-of-type::after{display:none;}h1,.entry-content h1,h2,.entry-content h2,h3,.entry-content h3,h4,.entry-content h4,h5,.entry-content h5,h6,.entry-content h6{color:#333333;}.elementor-widget-heading .elementor-heading-title{margin:0;}.elementor-page .ast-menu-toggle{color:unset !important;background:unset !important;}.elementor-post.elementor-grid-item.hentry{margin-bottom:0;}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product,.elementor-element .elementor-wc-products .woocommerceclass*columns- ul.products li.product{width:auto;margin:0;float:none;}body .elementor hr{background-color:#ccc;margin:0;}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;left:0 !important;}.elementor-posts-container CLASS*ast-width-{width:100%;}.elementor-template-full-width .ast-container{display:block;}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{top:0 !important;}@media (max-width:544px){.elementor-element .elementor-wc-products .woocommerceclass*columns- ul.products li.product{width:auto;margin:0;}.elementor-element .woocommerce .woocommerce-result-count{float:none;}}.ast-header-break-point .main-header-bar{border-bottom-width:4px;border-bottom-color:#02b0b6;}@media (min-width:922px){.main-header-bar{border-bottom-width:4px;border-bottom-color:#02b0b6;}}.ast-flex{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;}.main-header-bar{padding:1em 0;}.ast-site-identity{padding:0;}.header-main-layout-1 .ast-flex.main-header-container, .header-main-layout-3 .ast-flex.main-header-container{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;}.header-main-layout-1 .ast-flex.main-header-container, .header-main-layout-3 .ast-flex.main-header-container{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;}.main-header-menu .sub-menu .menu-item.menu-item-has-children > .menu-link:after{position:absolute;right:1em;top:50%;transform:translate(0,-50%) rotate(270deg);}.ast-header-break-point .main-header-bar .main-header-bar-navigation .page_item_has_children > .ast-menu-toggle::before, .ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before, .ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before, .ast-header-break-point .ast-mobile-header-wrap .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before{font-weight:bold;content:\e900;font-family:Astra;text-decoration:inherit;display:inline-block;}.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before{content:\e900;font-family:Astra;font-size:.65em;text-decoration:inherit;display:inline-block;transform:translate(0, -2px) rotateZ(270deg);margin-right:5px;}.widget_search .search-form:after{font-family:Astra;font-size:1.2em;font-weight:normal;content:\e8b6;position:absolute;top:50%;right:15px;transform:translate(0, -50%);}.astra-search-icon::before{content:\e8b6;font-family:Astra;font-style:normal;font-weight:normal;text-decoration:inherit;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;z-index:3;}.main-header-bar .main-header-bar-navigation .page_item_has_children > a:after, .main-header-bar .main-header-bar-navigation .menu-item-has-children > a:after, .menu-item-has-children .ast-header-navigation-arrow:after{content:\e900;display:inline-block;font-family:Astra;font-size:.6rem;font-weight:bold;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;line-height:normal;}.menu-item-has-children .sub-menu .ast-header-navigation-arrow:after{margin-left:0;}.ast-mobile-popup-drawer .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg);}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children > .menu-link:after{display:none;}@media (min-width:922px){.ast-builder-menu .main-navigation > ul > li:last-child a{margin-right:0;}}.ast-separate-container .ast-article-inner{background-color:transparent;background-image:none;}.ast-separate-container .ast-article-post{background-color:#ffffff;}.ast-separate-container .ast-article-single:not(.ast-related-post), .woocommerce.ast-separate-container .ast-woocommerce-container, .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .ast-author-meta, .ast-separate-container .related-posts-title-wrapper,.ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content,.ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description, .ast-separate-container .comments-area .comment-respond, .ast-separate-container .comments-area .ast-comment-list li, .ast-separate-container .comments-area .comments-title{background-color:#ffffff;}.ast-separate-container.ast-two-container #secondary .widget{background-color:#ffffff;}:root{--e-global-color-astglobalcolor0:#0170B9;--e-global-color-astglobalcolor1:#3a3a3a;--e-global-color-astglobalcolor2:#3a3a3a;--e-global-color-astglobalcolor3:#4B4F58;--e-global-color-astglobalcolor4:#F5F5F5;--e-global-color-astglobalcolor5:#FFFFFF;--e-global-color-astglobalcolor6:#E5E5E5;--e-global-color-astglobalcolor7:#424242;--e-global-color-astglobalcolor8:#000000;}/style>link relstylesheet idastra-google-fonts-css hrefhttps://fonts.googleapis.com/css?familyLato%3A400%2C700%2C600&displayfallback&ver4.8.0 mediaall />link relstylesheet idastra-menu-animation-css hrefhttps://invisiblepress.com/wp-content/themes/astra/assets/css/minified/menu-animation.min.css?ver4.8.0 mediaall />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--color--ast-global-color-0: var(--ast-global-color-0);--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);--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: var(--wp--custom--ast-content-width-size);--wp--style--global--wide-size: var(--wp--custom--ast-wide-width-size); }: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: none;}: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-ast-global-color-0-color{color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-color{color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-color{color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-color{color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-color{color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-color{color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-color{color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-color{color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-color{color: var(--wp--preset--color--ast-global-color-8) !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-ast-global-color-0-background-color{background-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-background-color{background-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-background-color{background-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-background-color{background-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-background-color{background-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-background-color{background-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-background-color{background-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-background-color{background-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-background-color{background-color: var(--wp--preset--color--ast-global-color-8) !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-ast-global-color-0-border-color{border-color: var(--wp--preset--color--ast-global-color-0) !important;}.has-ast-global-color-1-border-color{border-color: var(--wp--preset--color--ast-global-color-1) !important;}.has-ast-global-color-2-border-color{border-color: var(--wp--preset--color--ast-global-color-2) !important;}.has-ast-global-color-3-border-color{border-color: var(--wp--preset--color--ast-global-color-3) !important;}.has-ast-global-color-4-border-color{border-color: var(--wp--preset--color--ast-global-color-4) !important;}.has-ast-global-color-5-border-color{border-color: var(--wp--preset--color--ast-global-color-5) !important;}.has-ast-global-color-6-border-color{border-color: var(--wp--preset--color--ast-global-color-6) !important;}.has-ast-global-color-7-border-color{border-color: var(--wp--preset--color--ast-global-color-7) !important;}.has-ast-global-color-8-border-color{border-color: var(--wp--preset--color--ast-global-color-8) !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 idelementor-icons-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css?ver5.35.0 mediaall />link relstylesheet idelementor-frontend-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/frontend.css?ver3.27.0 mediaall />link relstylesheet idelementor-post-1390-css hrefhttps://invisiblepress.com/wp-content/uploads/elementor/css/post-1390.css?ver1734646306 mediaall />link relstylesheet idfont-awesome-5-all-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css?ver3.27.0 mediaall />link relstylesheet idfont-awesome-4-shim-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css?ver3.27.0 mediaall />link relstylesheet idwidget-spacer-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver3.27.0 mediaall />link relstylesheet idwidget-divider-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver3.27.0 mediaall />link relstylesheet idwidget-image-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver3.27.0 mediaall />link relstylesheet idwidget-heading-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver3.27.0 mediaall />link relstylesheet idwidget-text-editor-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver3.27.0 mediaall />link relstylesheet idwidget-image-box-css hrefhttps://invisiblepress.com/wp-content/plugins/elementor/assets/css/widget-image-box.min.css?ver3.27.0 mediaall />link relstylesheet idelementor-post-1407-css hrefhttps://invisiblepress.com/wp-content/uploads/elementor/css/post-1407.css?ver1734646307 mediaall />link relstylesheet idgoogle-fonts-1-css hrefhttps://fonts.googleapis.com/css?familyRoboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CCrete+Round%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&displayauto&ver6.7.1 mediaall />link relpreconnect hrefhttps://fonts.gstatic.com/ crossorigin>!--if IE>script srchttps://invisiblepress.com/wp-content/themes/astra/assets/js/unminified/flexibility.js?ver4.8.0 idastra-flexibility-js>/script>script idastra-flexibility-js-after>flexibility(document.documentElement);/script>!endif-->script srchttps://invisiblepress.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js?ver3.27.0 idfont-awesome-4-shim-js>/script>link relhttps://api.w.org/ hrefhttps://invisiblepress.com/index.php?rest_route/ />link relalternate titleJSON typeapplication/json hrefhttps://invisiblepress.com/index.php?rest_route/wp/v2/pages/1407 />link relEditURI typeapplication/rsd+xml titleRSD hrefhttps://invisiblepress.com/xmlrpc.php?rsd />meta namegenerator contentWordPress 6.7.1 />link relcanonical hrefhttps://invisiblepress.com/ />link relshortlink hrefhttps://invisiblepress.com/ />link relalternate titleoEmbed (JSON) typeapplication/json+oembed hrefhttps://invisiblepress.com/index.php?rest_route%2Foembed%2F1.0%2Fembed&urlhttps%3A%2F%2Finvisiblepress.com%2F />link relalternate titleoEmbed (XML) typetext/xml+oembed hrefhttps://invisiblepress.com/index.php?rest_route%2Foembed%2F1.0%2Fembed&urlhttps%3A%2F%2Finvisiblepress.com%2F&formatxml />meta namegenerator contentElementor 3.27.0; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto>style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}/style> 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://invisiblepress.com/wp-content/uploads/2020/06/cropped-cropped-cropped-logo-with-press.horizontal-1-32x32.jpg sizes32x32 />link relicon hrefhttps://invisiblepress.com/wp-content/uploads/2020/06/cropped-cropped-cropped-logo-with-press.horizontal-1-192x192.jpg sizes192x192 />link relapple-touch-icon hrefhttps://invisiblepress.com/wp-content/uploads/2020/06/cropped-cropped-cropped-logo-with-press.horizontal-1-180x180.jpg />meta namemsapplication-TileImage contenthttps://invisiblepress.com/wp-content/uploads/2020/06/cropped-cropped-cropped-logo-with-press.horizontal-1-270x270.jpg /> style idwp-custom-css> .ast-cart-menu-wrap .count, .ast-cart-menu-wrap .count:after { border-color: #aaaaaa; color: #aaaaaa;} /style> /head>body itemtypehttps://schema.org/WebPage itemscopeitemscope classhome page-template-default page page-id-1407 wp-custom-logo ast-desktop ast-page-builder-template ast-no-sidebar astra-4.8.0 ast-header-custom-item-outside ast-single-post ast-replace-site-logo-transparent ast-inherit-site-logo-transparent ast-theme-transparent-header elementor-default elementor-kit-1390 elementor-page elementor-page-1407>a classskip-link screen-reader-text href#content rolelink titleSkip to content> Skip to content/a>divclasshfeed site idpage> header classsite-header ast-primary-submenu-animation-slide-up header-main-layout-1 ast-primary-menu-enabled ast-has-mobile-header-logo ast-menu-toggle-icon ast-mobile-header-inline idmasthead itemtypehttps://schema.org/WPHeader itemscopeitemscope itemid#masthead > div classmain-header-bar-wrap> div classmain-header-bar> div classast-container> div classast-flex main-header-container> div classsite-branding> div classast-site-identity itemtypehttps://schema.org/Organization itemscopeitemscope > span classsite-logo-img>a hrefhttps://invisiblepress.com/ classcustom-logo-link transparent-custom-logo relhome itempropurl aria-labelTHE INVISIBLE PRESS>img width268 height65 srchttps://invisiblepress.com/wp-content/uploads/2020/06/cropped-logo-with-press.horizontal-1-268x65.jpg classcustom-logo altinvisible press icon decodingasync srcset sizes(max-width: 268px) 100vw, 268px />/a>a hrefhttps://invisiblepress.com/ classcustom-mobile-logo-link relhome itempropurl>/a>/span> /div> /div> !-- .site-branding --> div classast-mobile-menu-buttons> div classast-button-wrap> button typebutton classmenu-toggle main-header-menu-toggle ast-mobile-menu-buttons-fill aria-controlsprimary-menu aria-expandedfalse> span classscreen-reader-text>Main Menu/span> span classast-icon icon-menu-bars>span classmenu-toggle-icon>/span>/span> /button> /div> /div> div classast-main-header-bar-alignment>div classmain-header-bar-navigation>nav classsite-navigation ast-flex-grow-1 navigation-accessibility idprimary-site-navigation aria-labelSite Navigation itemtypehttps://schema.org/SiteNavigationElement itemscopeitemscope>div classmain-navigation>ul idprimary-menu classmain-header-menu ast-menu-shadow ast-nav-menu ast-flex ast-justify-content-flex-end submenu-with-border astra-menu-animation-slide-up >li idmenu-item-381 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-1407 current_page_item menu-item-381>a hrefhttps://invisiblepress.com/ aria-currentpage classmenu-link>Home/a>/li>li idmenu-item-828 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-828>a hrefhttps://invisiblepress.com/?page_id43 classmenu-link>About/a>/li>li idmenu-item-6922 classmenu-item menu-item-type-custom menu-item-object-custom menu-item-6922>a hrefhttp://HazelDenhart.com classmenu-link>Hazel Denhart/a>/li>li idmenu-item-6826 classmenu-item menu-item-type-post_type menu-item-object-page menu-item-6826>a hrefhttps://invisiblepress.com/?page_id1804 classmenu-link>Work with Us/a>/li>/ul>/div>/nav>/div>/div> /div>!-- Main Header Container --> /div>!-- ast-row --> /div> !-- Main Header Bar -->/div> !-- Main Header Bar Wrap --> /header>!-- #masthead --> div idcontent classsite-content> div classast-container> div idprimary classcontent-area primary> main idmain classsite-main> articleclasspost-1407 page type-page status-publish ast-article-single idpost-1407 itemtypehttps://schema.org/CreativeWork itemscopeitemscope> header classentry-header ast-no-title ast-header-without-markup> /header> !-- .entry-header --> div classentry-content clear itemproptext> div data-elementor-typewp-page data-elementor-id1407 classelementor elementor-1407> section classelementor-section elementor-top-section elementor-element elementor-element-34e9b21 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id34e9b21 data-element_typesection data-settings{"background_background":"classic"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ce2345c data-idce2345c data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-246655a elementor-widget elementor-widget-spacer data-id246655a data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-f1effea elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idf1effea data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f811392 data-idf811392 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-aa93987 elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-idaa93987 data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-ded079a elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idded079a data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b125048 data-idb125048 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-2b985b0 elementor-widget elementor-widget-spacer data-id2b985b0 data-element_typewidget data-widget_typespacer.default> div classelementor-widget-container> div classelementor-spacer> div classelementor-spacer-inner>/div> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-b164b0d elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idb164b0d data-element_typesection> div classelementor-background-overlay>/div> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-f0a90d5 data-idf0a90d5 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-98f309d elementor-widget__width-initial elementor-widget elementor-widget-image data-id98f309d data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://www.amazon.com/stores/Hazel-Denhart/author/B0CYST9111?refsr_ntt_srch_lnk_1&qid1721421301&sr1-1&isDramIntegratedtrue&shoppingPortalEnabledtrue target_blank> img fetchpriorityhigh decodingasync width197 height300 srchttps://invisiblepress.com/wp-content/uploads/2024/03/soul-105kb-197x300.jpg classattachment-medium size-medium wp-image-6440 altThe Image is of the cover of The Universal Grammar of Story: An Authors Guide to Writing for The Soul of The World. It features Dante Gabriel Rosetti’s 1868 painting, Venus Verticordia, meaning the transformer of hearts from self-centeredness to altruism. She is a beautiful nude, auburn-red-haired young English woman in a garden, covered with flowers save for one breast. Rick Denhart has altered Rossetti’s image to place her in a library, holding a bright red apple in her left hand, a quill pen in her right and over her left arm drapes a melting pocket compass with the needle pointing east. The compass reminds the viewer of Salvador Dali’s melting pocket watches. The library floats on a beautiful turquoise sea with waves breaking towards the viewer. Flowers festoon the scene and cover the Venus as a small blue bird whispers in her right ear. Crowning her head is a beautiful golden band with butterflies gracing it. Sunbeams stream from above across the scene. srcsethttps://invisiblepress.com/wp-content/uploads/2024/03/soul-105kb-197x300.jpg 197w, https://invisiblepress.com/wp-content/uploads/2024/03/soul-105kb-300x456.jpg 300w, https://invisiblepress.com/wp-content/uploads/2024/03/soul-105kb.jpg 470w sizes(max-width: 197px) 100vw, 197px /> /a> /div> /div> /div> /div> div classelementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-e4d4725 data-ide4d4725 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-30f5a59 elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-id30f5a59 data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> div classelementor-element elementor-element-b131a2d elementor-widget elementor-widget-heading data-idb131a2d data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h4 classelementor-heading-title elementor-size-default>a hrefhttps://monalisasaloy.com/>In all my years studying craft, reading books on writers by writers, standard genre tomes, Writing for the Soul of the World, is not just helpful with an incredible overview of craft, of thoughtful approaches to the writing life, and this idea of the Universal Grammar of Story, but it is the most beautifully-designed, thoughtfully laid- out book on writing I have ever witnessed that includes an overall design based on many brilliant classical texts, long adored, used, and quoted for their brilliance, now the plot points of which are directly applied.br>br>Mona Lisa Saloy, Poet Laureate of Louisiana/a>/h4> /div> /div> div classelementor-element elementor-element-88c59b5 elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-id88c59b5 data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-a2d46b9 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-ida2d46b9 data-element_typesection> div classelementor-background-overlay>/div> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f7288ee data-idf7288ee data-element_typecolumn> div classelementor-widget-wrap> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-a9dc986 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-ida9dc986 data-element_typesection> div classelementor-background-overlay>/div> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-cd5cc3a data-idcd5cc3a data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-65f4c1a elementor-widget__width-initial elementor-widget elementor-widget-image data-id65f4c1a data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttp://hazeldenhart.com target_blank> img decodingasync width225 height300 srchttps://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02-225x300.jpg classattachment-medium size-medium wp-image-6897 altImage of Hazel Denhart srcsethttps://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02-225x300.jpg 225w, https://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02-767x1024.jpg 767w, https://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02-768x1025.jpg 768w, https://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02-1151x1536.jpg 1151w, https://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02-1535x2048.jpg 1535w, https://invisiblepress.com/wp-content/uploads/2024/07/Hazel.Denhart.PBookstore.orig02.jpg 1536w sizes(max-width: 225px) 100vw, 225px /> /a> /div> /div> /div> /div> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3b2c7ba data-id3b2c7ba data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-97b9d77 elementor-widget elementor-widget-heading data-id97b9d77 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>a hrefhttp://hazeldenhart.com target_blank>Hazel Denhart, Ed.D./a>/h3> /div> /div> div classelementor-element elementor-element-27c2916 elementor-widget elementor-widget-heading data-id27c2916 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h4 classelementor-heading-title elementor-size-default>a hrefhttp://hazeldenhart.com target_blank>Give her 3 minutes and shell set your writing on fire! She only needs 30 seconds, but it will take you another 2 1/2 minutes to realize what just happened.br> Rev. Sarita Brown, Heythrop College, University of London, Alum/a>/h4> /div> /div> div classelementor-element elementor-element-4994967 elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-id4994967 data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> div classelementor-element elementor-element-7d14db5 elementor-widget elementor-widget-heading data-id7d14db5 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h4 classelementor-heading-title elementor-size-default>a hrefhttp://hazeldenhart.com target_blank>The Universal Grammar of Story®: An Author’s Guide to Writing for the Soul of the World uniquely weaves together seemingly incompatible fields to awaken, transform, and perfect the storyteller within you using techniques from master writing teacher Dr. Hazel Denhart./a>/h4> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-23f73a5 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default data-id23f73a5 data-element_typesection data-settings{"stretch_section":"section-stretched"}> div classelementor-background-overlay>/div> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d10cf92 data-idd10cf92 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-90218a1 elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-id90218a1 data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> div classelementor-element elementor-element-80148e6 elementor-widget elementor-widget-heading data-id80148e6 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>The Ancient Mythopoetic Approach to Storytelling/h3> /div> /div> section classelementor-section elementor-inner-section elementor-element elementor-element-1a75e77 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id1a75e77 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-bb3516d data-idbb3516d data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-7cd9147 elementor-widget elementor-widget-image data-id7cd9147 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> img loadinglazy decodingasync width507 height338 srchttps://invisiblepress.com/wp-content/uploads/2022/02/GettyImages-158326970-LICENSED.jpg classattachment-large size-large wp-image-4906 alt srcsethttps://invisiblepress.com/wp-content/uploads/2022/02/GettyImages-158326970-LICENSED.jpg 507w, https://invisiblepress.com/wp-content/uploads/2022/02/GettyImages-158326970-LICENSED-300x200.jpg 300w, https://invisiblepress.com/wp-content/uploads/2022/02/GettyImages-158326970-LICENSED-450x300.jpg 450w sizes(max-width: 507px) 100vw, 507px /> /div> /div> div classelementor-element elementor-element-0b8dc26 elementor-widget elementor-widget-text-editor data-id0b8dc26 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>The Universal Grammar of Story is an ancient mythopoetic philosophy and method of writing. It is not a genre but a way of approaching any storytelling genre, be it fiction or nonfiction. It is founded on four core pillars:/p>ol>li>The unconscious drives calling a writer to a particular story and drawing its audience to it, including three forms of intelligence used in storytelling;/li>li>The power of language and how some words embolden while others weaken writers;/li>li>The core narrative forms of story structure and logic;/li>li>How mythology and mystical philosophy naturally move through stories/li>/ol> /div> /div> /div> /div> /div> /section> div classelementor-element elementor-element-f6943a6 elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-idf6943a6 data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> div classelementor-element elementor-element-4589934 elementor-widget elementor-widget-heading data-id4589934 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h2 classelementor-heading-title elementor-size-default>The Series/h2> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-02fb349 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id02fb349 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0546eca data-id0546eca data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-1aea92c elementor-widget elementor-widget-image data-id1aea92c data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://www.amazon.com/stores/Hazel-Denhart/author/B0CYST9111?refsr_ntt_srch_lnk_1&qid1721421301&sr1-1&isDramIntegratedtrue&shoppingPortalEnabledtrue target_blank> img loadinglazy decodingasync width201 height300 srchttps://invisiblepress.com/wp-content/uploads/2021/04/soul-629-x-939-e1690567183814-201x300.jpg classattachment-medium size-medium wp-image-5964 alt srcsethttps://invisiblepress.com/wp-content/uploads/2021/04/soul-629-x-939-e1690567183814-201x300.jpg 201w, https://invisiblepress.com/wp-content/uploads/2021/04/soul-629-x-939-e1690567183814.jpg 300w sizes(max-width: 201px) 100vw, 201px /> /a> /div> /div> /div> /div> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-92c8389 data-id92c8389 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-04ce2c8 elementor-widget elementor-widget-heading data-id04ce2c8 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>a hrefhttps://invisiblepress.com/product/grammar-main/>An Authors Guide to Writing for the Soul of the World/a>/h3> /div> /div> div classelementor-element elementor-element-b1647a5 elementor-widget elementor-widget-text-editor data-idb1647a5 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>One of the best books on the subject of writing, storytelling, and storytelling structure in recent memory exploring the writer’s multifaceted powers of transformation and communication. i>~ Reprospace Reviews/i>/p> /div> /div> div classelementor-element elementor-element-f7c6865 elementor-widget elementor-widget-text-editor data-idf7c6865 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>A philosophical and technical wonder. Breathtaking in its density and scope. In language both poetic and concise, Hazel Denhart unpeels the beauty of the writing process with a deft skill. ~em>Rev. Sarita Brown/em>/p> /div> /div> div classelementor-element elementor-element-f89895f elementor-widget elementor-widget-text-editor data-idf89895f data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Deep, poetic and daring. I have gained many epiphanies and renewed excitement to begin writing again, now through a more sacred lens. i>~a hrefhttps://www.akialai.com/>Akiala I, author of 100 Things/a>/i>/p> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-23449c4 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id23449c4 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b4eac0a data-idb4eac0a data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-6be610b elementor-widget__width-initial elementor-widget elementor-widget-image data-id6be610b data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://www.amazon.com/Universal-Grammar-Story-TM-Workbook/dp/1936262045/?_encodingUTF8&pd_rd_wAH2Dc&content-idamzn1.sym.f911c8db-3a2b-4b3e-952f-b80fdcee83f4&pf_rd_pf911c8db-3a2b-4b3e-952f-b80fdcee83f4&pf_rd_r141-5213188-1527105&pd_rd_wg26Tzh&pd_rd_re07be6e3-19db-4a94-a81f-8863ad53c646&ref_aufs_ap_sc_dsk target_blank> img loadinglazy decodingasync width199 height300 srchttps://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-199x300.jpg classattachment-medium size-medium wp-image-1497 altUniversal Grammar of Story Workbook Cover srcsethttps://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-199x300.jpg 199w, https://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-679x1024.jpg 679w, https://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-768x1158.jpg 768w, https://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-1019x1536.jpg 1019w, https://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-1358x2048.jpg 1358w, https://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-600x905.jpg 600w, https://invisiblepress.com/wp-content/uploads/2020/06/WorkBook-front-cover-scaled-e1621641155649.jpg 287w sizes(max-width: 199px) 100vw, 199px /> /a> /div> /div> /div> /div> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-aa72dd2 data-idaa72dd2 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-889cdbc elementor-widget elementor-widget-heading data-id889cdbc data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>a hrefhttps://invisiblepress.com/product/universal-grammar-of-story-the-workbook/> THE WORKBOOK/a>/h3> /div> /div> div classelementor-element elementor-element-8c30a70 elementor-widget elementor-widget-text-editor data-id8c30a70 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>A truly worthy insight into the storytelling craft and the wisdom at its heart worth the price of admission alone. If you enjoy anything related to the formation and/or thought of story, this book is a must have! a hrefhttps://www.goodreads.com/book/show/44583668-the-universal-grammar-of-story>i>Rob, Goodreads/i>/a>/p> /div> /div> div classelementor-element elementor-element-5416fce elementor-widget elementor-widget-text-editor data-id5416fce data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>The Universal Grammar of Story is an enlightened method of storytelling that integrates structure with mystery, ignites the intellect, and opens our minds to the audacity of intuitive encounter. i>–Brian Jaeger, Inside Works, Seattle/i>/p> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-ad0ae61 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idad0ae61 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b70008c data-idb70008c data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-1c9c9d9 elementor-widget elementor-widget-image data-id1c9c9d9 data-element_typewidget data-widget_typeimage.default> div classelementor-widget-container> a hrefhttps://www.amazon.com/Universal-Grammar-Story-Practical-Excercises/dp/1936262053?ref_ast_author_dp target_blank> img loadinglazy decodingasync width204 height300 srchttps://invisiblepress.com/wp-content/uploads/2020/06/GameBook-front-204x300.png classattachment-medium size-medium wp-image-1498 altUniversal Grammar of Story Game Book Cover srcsethttps://invisiblepress.com/wp-content/uploads/2020/06/GameBook-front-204x300.png 204w, https://invisiblepress.com/wp-content/uploads/2020/06/GameBook-front-e1621641064686.png 295w sizes(max-width: 204px) 100vw, 204px /> /a> /div> /div> /div> /div> div classelementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0e10c8f data-id0e10c8f data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-836388c elementor-widget elementor-widget-heading data-id836388c data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>a hrefhttps://invisiblepress.com/product/universal-grammar-of-story-game-book-of-practical-exercises-for-writers/>GAME BOOK OF PRACTICAL EXERCISES FOR WRITERS/a>/h3> /div> /div> div classelementor-element elementor-element-759fc7f elementor-widget elementor-widget-text-editor data-id759fc7f data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Never has more deep thought, research, experience and passion been so beautifully integrated into a step-by-step guide to the anatomy of a story. –a hrefhttps://www.amazon.com/stores/Nani-Lawrence/author/B07GPWF2YN?refap_rdr&isDramIntegratedtrue&shoppingPortalEnabledtrue target_blank relnoopener>Nani Lawrence author of Living in a State of Grace/a>/p> /div> /div> div classelementor-element elementor-element-4ddb18e elementor-widget elementor-widget-text-editor data-id4ddb18e data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>Hazel Denhart opens your eyes to an entirely new way of viewing writing and shows you the common world of every great piece of writing or film that you’ve ever come across. a hrefhttps://www.gatensdesign.com/>i>–Karen Gatens/i>/a>/p> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-bb8d332 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-idbb8d332 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-785e551 data-id785e551 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-38ee2be elementor-widget-divider--view-line elementor-widget elementor-widget-divider data-id38ee2be data-element_typewidget data-widget_typedivider.default> div classelementor-widget-container> div classelementor-divider> span classelementor-divider-separator> /span> /div> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-2707dd8 elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id2707dd8 data-element_typesection> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-44adba9 data-id44adba9 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-c1da5a8 elementor-widget elementor-widget-heading data-idc1da5a8 data-element_typewidget data-widget_typeheading.default> div classelementor-widget-container> h3 classelementor-heading-title elementor-size-default>About the Trademark/h3> /div> /div> div classelementor-element elementor-element-a788ea5 elementor-widget elementor-widget-text-editor data-ida788ea5 data-element_typewidget data-widget_typetext-editor.default> div classelementor-widget-container> p>The Universal Grammar of Storystrong>® /strong>is a registered trademark governing this unique mythopoetic writing method and philosophy. The presence of the trademark with books, videos, classes, lectures, presentations, games, and other products and services assures consumers that these materials are certified as authentic. Teachers, presenters, coaches and workshop leaders among others with Universal Grammar of Story certification have undergone rigorous training in the method and philosophy based on extensive scholarly research./p> /div> /div> /div> /div> /div> /section> section classelementor-section elementor-top-section elementor-element elementor-element-2afe0c24 elementor-section-content-middle elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default data-id2afe0c24 data-element_typesection data-settings{"background_background":"classic","stretch_section":"section-stretched"}> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-532eb909 data-id532eb909 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> section classelementor-section elementor-inner-section elementor-element elementor-element-64a5d7df elementor-section-boxed elementor-section-height-default elementor-section-height-default data-id64a5d7df data-element_typesection> div classelementor-background-overlay>/div> div classelementor-container elementor-column-gap-default> div classelementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-22533a71 data-id22533a71 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-6273c42b elementor-position-top elementor-widget elementor-widget-image-box data-id6273c42b data-element_typewidget data-widget_typeimage-box.default> div classelementor-widget-container> div classelementor-image-box-wrapper>figure classelementor-image-box-img>a hrefhttps://www.youtube.com/channel/UCvlKyh65YqeJpyLEgP16nwA target_blank tabindex-1>img loadinglazy decodingasync width150 height150 srchttps://invisiblepress.com/wp-content/uploads/2023/03/Screen-Shot-2023-03-07-at-3.10.12-PM-150x150.png classattachment-thumbnail size-thumbnail wp-image-5702 alt srcsethttps://invisiblepress.com/wp-content/uploads/2023/03/Screen-Shot-2023-03-07-at-3.10.12-PM-150x150.png 150w, https://invisiblepress.com/wp-content/uploads/2023/03/Screen-Shot-2023-03-07-at-3.10.12-PM-100x100.png 100w, https://invisiblepress.com/wp-content/uploads/2023/03/Screen-Shot-2023-03-07-at-3.10.12-PM.png 278w sizes(max-width: 150px) 100vw, 150px />/a>/figure>div classelementor-image-box-content>h5 classelementor-image-box-title>a hrefhttps://www.youtube.com/channel/UCvlKyh65YqeJpyLEgP16nwA target_blank>Writing for the Soul of the World Videos/a>/h5>p classelementor-image-box-description>Learn about the Universal Grammar of Story with short videos on YouTube./p>/div>/div> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-c2a8462 data-idc2a8462 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-7e5f48e elementor-position-top elementor-widget elementor-widget-image-box data-id7e5f48e data-element_typewidget data-widget_typeimage-box.default> div classelementor-widget-container> div classelementor-image-box-wrapper>figure classelementor-image-box-img>a hrefhttps://invisiblepress.com/?page_id1804 target_blank tabindex-1>img loadinglazy decodingasync width150 height150 srchttps://invisiblepress.com/wp-content/uploads/2020/06/graduation-cap-grad-cap-304369-150x150.png classattachment-thumbnail size-thumbnail wp-image-3795 altgraduation cap, grad, cap-304369.jpg srcsethttps://invisiblepress.com/wp-content/uploads/2020/06/graduation-cap-grad-cap-304369-150x150.png 150w, https://invisiblepress.com/wp-content/uploads/2020/06/graduation-cap-grad-cap-304369-100x100.png 100w sizes(max-width: 150px) 100vw, 150px />/a>/figure>div classelementor-image-box-content>h5 classelementor-image-box-title>a hrefhttps://invisiblepress.com/?page_id1804 target_blank>Work with Us/a>/h5>p classelementor-image-box-description>Interns and Seasoned Professionals/p>/div>/div> /div> /div> /div> /div> div classelementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2171bc0 data-id2171bc0 data-element_typecolumn> div classelementor-widget-wrap elementor-element-populated> div classelementor-element elementor-element-c779d79 elementor-position-top elementor-widget elementor-widget-image-box data-idc779d79 data-element_typewidget data-widget_typeimage-box.default> div classelementor-widget-container> div classelementor-image-box-wrapper>figure classelementor-image-box-img>a hrefhttps://invisiblepress.com/?page_id3 target_blank tabindex-1>img loadinglazy decodingasync width120 height120 srchttps://invisiblepress.com/wp-content/uploads/2018/12/lock-free-img.png classattachment-thumbnail size-thumbnail wp-image-587 altlock srcsethttps://invisiblepress.com/wp-content/uploads/2018/12/lock-free-img.png 120w, https://invisiblepress.com/wp-content/uploads/2018/12/lock-free-img-100x100.png 100w sizes(max-width: 120px) 100vw, 120px />/a>/figure>div classelementor-image-box-content>h5 classelementor-image-box-title>a hrefhttps://invisiblepress.com/?page_id3 target_blank>Privacy Policy/a>/h5>p classelementor-image-box-description>Privacy Statement/p>/div>/div> /div> /div> /div> /div> /div> /section> /div> /div> /div> /section> /div> /div>!-- .entry-content .clear --> /article>!-- #post-## --> /main>!-- #main --> /div>!-- #primary --> /div> !-- ast-container --> /div>!-- #content --> footer classsite-footer idcolophon itemtypehttps://schema.org/WPFooter itemscopeitemscope itemid#colophon > div classast-small-footer footer-sml-layout-2> div classast-footer-overlay> div classast-container> div classast-small-footer-wrap > div classast-row ast-flex> div classast-small-footer-section ast-small-footer-section-1 ast-small-footer-section-equally ast-col-md-6 > Copyright © 2025 span classast-footer-site-title>THE INVISIBLE PRESS/span> /div> div classast-small-footer-section ast-small-footer-section-2 ast-small-footer-section-equally ast-col-md-6 > Powered by span classast-footer-site-title>THE INVISIBLE PRESS/span> /div> /div> !-- .ast-row.ast-flex --> /div>!-- .ast-small-footer-wrap --> /div>!-- .ast-container --> /div>!-- .ast-footer-overlay -->/div>!-- .ast-small-footer--> /footer>!-- #colophon --> /div>!-- #page --> 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>script idastra-theme-js-js-extra>var astra {break_point:921,isRtl:,is_scroll_to_id:,is_scroll_to_top:,is_header_footer_builder_active:,responsive_cart_click:flyout};/script>script srchttps://invisiblepress.com/wp-content/themes/astra/assets/js/unminified/style.js?ver4.8.0 idastra-theme-js-js>/script>script srchttps://invisiblepress.com/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver3.27.0 idelementor-webpack-runtime-js>/script>script srchttps://invisiblepress.com/wp-includes/js/jquery/jquery.js?ver3.7.1 idjquery-core-js>/script>script srchttps://invisiblepress.com/wp-includes/js/jquery/jquery-migrate.js?ver3.4.1 idjquery-migrate-js>/script>script srchttps://invisiblepress.com/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver3.27.0 idelementor-frontend-modules-js>/script>script srchttps://invisiblepress.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.27.0,is_static:false,experimentalFeatures:{additional_custom_breakpoints:true,e_swiper_latest:true,e_onboarding:true,home_screen:true,landing-pages:true,editor_v2:true,link-in-bio:true,floating-buttons:true},urls:{assets:https:\/\/invisiblepress.com\/wp-content\/plugins\/elementor\/assets\/,ajaxurl:https:\/\/invisiblepress.com\/wp-admin\/admin-ajax.php,uploadUrl:https:\/\/invisiblepress.com\/wp-content\/uploads},nonces:{floatingButtonsClickTracking:8a9bf9dc21},swiperClass:swiper,settings:{page:,editorPreferences:},kit:{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},post:{id:1407,title:THE%20INVISIBLE%20PRESS%20%E2%80%93%20Writing%20for%20the%20Soul%20of%20the%20World,excerpt:,featuredImage:false}};/script>script srchttps://invisiblepress.com/wp-content/plugins/elementor/assets/js/frontend.js?ver3.27.0 idelementor-frontend-js>/script> script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener(hashchange,function(){var t,elocation.hash.substring(1);/^A-z0-9_-+$/.test(e)&&(tdocument.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex-1),t.focus())},!1); /script> /body>/html>!--Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/Served from: comune.invisiblepress.com @ 2025-01-20 18:47:46 by W3 Total Cache-->
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
]