preloader
About – Endel Digital Solutions</subtext> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet"> <style> /* ============================================================ ENDEL ABOUT PAGE — WPBakery Full-Width Version Paste ALL of this into: Appearance → Customize → Additional CSS OR a Custom CSS field in WPBakery Row settings ============================================================ */ :root { --teal: #25BAC6; --teal-dim: rgba(37,186,198,.13); --teal-border: rgba(37,186,198,.35); --bg: #0a0a0a; --bg-card: #111213; --gray-text: #e8eaed; --gray-mid: #9aa0a9; --border: rgba(255,255,255,.08); --white: #ffffff; --font-head: 'Syne', sans-serif; --font-body: 'DM Sans', sans-serif; } /* ── Full-width WPBakery stretch override ── */ /* Forces the section to break out of any WP container */ .endel-about-section { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; background: var(--bg); font-family: var(--font-body); -webkit-font-smoothing: antialiased; box-sizing: border-box; overflow: hidden; /* keeps glow inside */ } /* ── Subtle background glow ── */ .endel-about-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(37,186,198,.07) 0%, transparent 70%); pointer-events: none; } /* ── Inner max-width container ── */ .endel-about-inner { max-width: 1180px; margin: 0 auto; padding: 80px 40px 96px; box-sizing: border-box; } /* ── Eyebrow ── */ .endel-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; } .endel-eyebrow__line { flex: 0 0 36px; height: 2px; background: var(--teal); display: block; } .endel-eyebrow__label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); } /* ── Heading ── */ .endel-heading { font-family: var(--font-head); font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; line-height: 1.12; color: var(--white); max-width: 680px; margin: 0 0 44px; } .endel-heading span { color: var(--teal); } /* ── Teal gradient divider ── */ .endel-divider { width: 100%; height: 1px; background: linear-gradient(90deg, var(--teal) 0%, transparent 75%); margin-bottom: 52px; } /* ── Two-column paragraphs ── */ .endel-para-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin-bottom: 0; } .endel-para { padding: 32px 0; border-top: 1px solid var(--border); position: relative; } .endel-para--full { grid-column: 1 / -1; } /* animated teal sweep on hover */ .endel-para::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width .38s ease; } .endel-para:hover::before { width: 100%; } .endel-para p, .endel-usp-intro, .endel-para-close { font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.88; color: var(--gray-mid); margin: 0; } .endel-para p strong, .endel-para-close strong { font-weight: 500; color: var(--gray-text); } /* ── USP intro line ── */ .endel-usp-intro { margin-bottom: 28px; } /* ── USP Cards grid ── */ .endel-usp-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; } .endel-usp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 28px 22px; position: relative; overflow: hidden; box-sizing: border-box; transition: border-color .25s, box-shadow .25s, transform .25s; } /* teal bottom bar animation */ .endel-usp-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .32s ease; } .endel-usp-card:hover { border-color: var(--teal-border); box-shadow: 0 8px 32px rgba(37,186,198,.13); transform: translateY(-3px); } .endel-usp-card:hover::after { transform: scaleX(1); } /* icon circle */ .endel-usp-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; } .endel-usp-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; } /* card text */ .endel-usp-label { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: .01em; } .endel-usp-desc { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray-mid); margin: 0; } /* ── Closing sentence ── */ .endel-para-close { margin-top: 4px; } /* ============================================================ RESPONSIVE ============================================================ */ /* Tablet — 768 to 1024 */ @media (max-width: 1024px) { .endel-about-inner { padding: 64px 32px 80px; } .endel-para-grid { grid-template-columns: 1fr; gap: 0; } .endel-para--full { grid-column: 1; } .endel-usp-cards { grid-template-columns: repeat(2, 1fr); } } /* Mobile — up to 767px */ @media (max-width: 767px) { .endel-about-inner { padding: 48px 20px 64px; } .endel-heading { font-size: clamp(26px, 7vw, 36px); margin-bottom: 32px; } .endel-divider { margin-bottom: 36px; } .endel-para p, .endel-usp-intro, .endel-para-close { font-size: 15px; } .endel-usp-cards { grid-template-columns: 1fr; gap: 12px; } .endel-usp-card { padding: 22px 18px; } } </style> </head> <body style="margin:0;padding:0;background:#0a0a0a;"> <div class="endel-about-section"> <div class="endel-about-inner"> <div class="endel-eyebrow"> <span class="endel-eyebrow__line"></span> <span class="endel-eyebrow__label">About</span> </div> <h2 class="endel-heading"> Endel Digital Solutions <span>Pvt Ltd</span> </h2> <div class="endel-divider"></div> <div class="endel-para-grid"> <div class="endel-para"> <p>Endel Digital Solutions Pvt Ltd is an innovative leader in industrial digitalization and automation, bridging the gap between traditional factory floors and smart digital ecosystems. Operating across <strong>India, the UAE, the Middle East, and East Africa</strong>, the company engineers end-to-end intelligence for high-stakes industries, including <strong>cement, steel, manufacturing, chemicals, mining, oil & gas, and logistics</strong>.</p> </div> <div class="endel-para"> <p>Endel has earned the trust of global giants like <strong>Reliance, UltraTech (Aditya Birla Group), CEAT, Godrej, Astral Pipes, and Nayara Energy</strong> through its cutting-edge suite of Industrial IoT and AI-powered solutions, such as its flagship safety protocol <strong>Zero Accident Plant (Zap4.0)</strong>, Unmanned Weighbridge automation, LIMS, and advanced Gate Management Systems.</p> </div> <div class="endel-para endel-para--full"> <p class="endel-usp-intro">What sets Endel apart as an industry leader are its key unique selling propositions (USPs):</p> <div class="endel-usp-cards"> <div class="endel-usp-card"> <div class="endel-usp-icon"> <svg viewBox="0 0 24 24"> <circle cx="12" cy="12" r="3"/> <path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z"/> </svg> </div> <span class="endel-usp-label">Customized Automation</span> <p class="endel-usp-desc">fully customized automation built on scalable, future-ready architectures</p> </div> <div class="endel-usp-card"> <div class="endel-usp-icon"> <svg viewBox="0 0 24 24"> <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/> <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/> </svg> </div> <span class="endel-usp-label">Native ERP Compatibility</span> <p class="endel-usp-desc">native ERP compatibility with dominant platforms like SAP, Oracle, and Microsoft Dynamics</p> </div> <div class="endel-usp-card"> <div class="endel-usp-icon"> <svg viewBox="0 0 24 24"> <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/> </svg> </div> <span class="endel-usp-label">Enterprise-Grade Security</span> <p class="endel-usp-desc">enterprise-grade data security with full compliance</p> </div> <div class="endel-usp-card"> <div class="endel-usp-icon"> <svg viewBox="0 0 24 24"> <circle cx="12" cy="12" r="10"/> <polyline points="12 6 12 12 16 14"/> </svg> </div> <span class="endel-usp-label">24/7 Dedicated Support</span> <p class="endel-usp-desc">24/7 dedicated support designed to eliminate costly operational downtime</p> </div> </div> <p class="endel-para-close">By transforming raw operational data into actionable visibility, Endel empowers modern enterprises to run <strong>smarter, safer, and with optimal efficiency</strong>.</p> </div> </div> </div> </div> </body> </html> </div> </div> </div></div></div></div> <div class="xs_social_share_widget xs_share_url after_content main_content wslu-style-1 wslu-share-box-shaped wslu-fill-colored wslu-none wslu-share-horizontal wslu-theme-font-no wslu-main_content"> <ul> </ul> </div> </div> </article> </div> </section> </main> <footer class="cs_footer cs_primary_bg cs_ternary_color" data-src=""> <div class="cs_footer_main"> <div class="container"> <div class="cs_footer_grid_4"> <div class="cs_footer_grid_item"><div id="media_image-3" class="footer__widget cs_footer_widget cs_footer_item cs_menu_widget cs_mp0 footer__widget-2 footer-col-2-1 mb-50 widget_media_image"><img bv-data-src="https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-scaled.png" width="2560" height="1036" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%202560%201036'%3E%3C/svg%3E" class="image wp-image-26192 attachment-full size-full bv-tag-attr-replace bv-lazyload-tag-img" alt="" style="max-width: 100%; height: auto;" decoding="async" bv-data-srcset="https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-scaled.png 2560w, https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-300x121.png 300w, https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-1024x414.png 1024w, https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-768x311.png 768w, https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-1536x622.png 1536w, https://www.thebrainalytics.com/wp-content/uploads/2025/09/The-Brainalytics-logo-White-01-2048x829.png 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /></div><div id="text-6" class="footer__widget cs_footer_widget cs_footer_item cs_menu_widget cs_mp0 footer__widget-2 footer-col-2-1 mb-50 widget_text"> <div class="textwidget"><p>We at The Brainalytics, are a professional organizers of high-level B2B events. We research, produce, conduct and coordinate conferences, awards and summits in major business industries of emerging Global Market.</p> </div> </div></div><div class="cs_footer_grid_item"><div id="custom_html-2" class="widget_text footer__widget cs_footer_widget cs_footer_item cs_menu_widget cs_mp0 footer__widget-2 footer-col-2-2 mb-50 widget_custom_html"><h3 class="cs_widget_title cs_secondary_font cs_medium text-uppercase cs_fs_18 cs_white_color">Contact Us</h3><div class="textwidget custom-html-widget"><div class="single-contact-address"><div class="icon"> <span class="fa fa-phone"></span></div><div class="contact-details"> <a href="tel:+919552277755">+91 2231692212</a></div></div> <div class="single-contact-address"><div class="icon"> <span class="fa fa-mobile"></span></div><div class="contact-details"> <a href="tel:+919552277755">+91 9552277755</a></div></div> <div class="single-contact-address"><div class="icon"> <span class="fa fa-mobile"></span></div><div class="contact-details"> <a href="tel:+917020744883">+91 7020744883</a></div></div> <div class="single-contact-address"><div class="icon"> <span class="fa fa-envelope"></span></div><div class="contact-details"> <a href="mailto:connect@thebrainalytics.com">connect@thebrainalytics.com</a></div></div></div></div></div><div class="cs_footer_grid_item"><div id="nav_menu-7" class="footer__widget cs_footer_widget cs_footer_item cs_menu_widget cs_mp0 footer__widget-2 footer-col-2-3 mb-50 widget_nav_menu"><h3 class="cs_widget_title cs_secondary_font cs_medium text-uppercase cs_fs_18 cs_white_color">Company</h3><div class="menu-company-container"><ul id="menu-company" class="menu"><li id="menu-item-22853" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-22853"><a href="https://www.thebrainalytics.com/">Home</a></li> <li id="menu-item-22795" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22795"><a href="https://www.thebrainalytics.com/about-us/">About Us</a></li> <li id="menu-item-22799" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22799"><a href="https://www.thebrainalytics.com/team/">Team</a></li> <li id="menu-item-22798" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-22798"><a href="https://www.thebrainalytics.com/blog/">Blog</a></li> </ul></div></div></div><div class="cs_footer_grid_item"><div id="nav_menu-8" class="footer__widget cs_footer_widget cs_footer_item cs_menu_widget cs_mp0 footer__widget-3 footer-col-3-1 mb-50 widget_nav_menu"><h3 class="cs_widget_title cs_secondary_font cs_medium text-uppercase cs_fs_18 cs_white_color">Resources</h3><div class="menu-resources-container"><ul id="menu-resources" class="menu"><li id="menu-item-22793" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22793"><a href="https://www.thebrainalytics.com/videos/">Videos</a></li> <li id="menu-item-22792" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-22792"><a rel="privacy-policy" href="https://www.thebrainalytics.com/privacy-policy/">Privacy Policy</a></li> <li id="menu-item-22791" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22791"><a href="https://www.thebrainalytics.com/refund-policy/">Refund Policy</a></li> </ul></div></div></div> </div> </div> </div> <div class="cs_bottom_footer_wrap"> <div class="container"> <div class="cs_bottom_footer"> <div class="cs_bottom_footer_left"> <div class="cs_social_btns cs_style_1"> <a class="cs_center" href="https://www.facebook.com/TheBrainalytics/"><i class="fa-brands fa-facebook-f"></i></a> <a class="cs_center" href="https://www.youtube.com/@TheBrainalytics"><i class="fa-brands fa-youtube"></i></a> <a class="cs_center" href="https://www.linkedin.com/company/the-brainalytics/"><i class="fa-brands fa-linkedin-in"></i></a> <a class="cs_center" href="https://x.com/thebrainalytics"><i class="fa-brands fa-twitter"></i></a> <a class="cs_center" href="https://www.instagram.com/thebrainalytics/"><i class="fa-brands fa-instagram"></i></a> </div> </div> <div class="cs_copyright">The Brainalytics © 2025 | All Rights Reserved</div> <div class="cs_bottom_footer_right"> <ul class="cs_footer_links cs_mp0"> <li> <a href="https://thebrainalytics.com/privacy-policy/">Privacy Policy</a> </li> </ul> </div> </div> </div> </div> </footer> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/bione/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script type="bv_inline_delayed_js" bv_unique_id="k7OBhvlzPG76Cag5i6zM" defer="1" data-cfasync="" bv_inline_delayed="1" async="">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> <link rel='stylesheet' id='countdown_css-css' href='https://www.thebrainalytics.com/wp-content/plugins/widget-countdown/includes/style/style.css?ver=7.0' media='all' /> <link rel='stylesheet' id='thickbox-css' href='https://www.thebrainalytics.com/wp-includes/js/thickbox/thickbox.css?ver=7.0' media='all' /> <link rel='stylesheet' id='jeg-dynamic-style-css' href='https://www.thebrainalytics.com/wp-content/plugins/jeg-elementor-kit/lib/jeg-framework/assets/css/jeg-dynamic-styles.css?ver=1.3.0' media='all' /> <style id="global-styles-inline-css"> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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 rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} /*# sourceURL=global-styles-inline-css */ </style> <template id="c3QdVESEr7YPfQ7EOH4c"></template> <template id="ZL5VDsCZed48KDqqWTHc"></template> <template id="2aGPmeX54Xb7WKWh06rG"></template> <template id="hzzR5qOX3C1NUfI4n06D"></template> <script type="bv_inline_delayed_js" bv_unique_id="G2rwLz8toiWVlFkyZ5MK" id="wp-i18n-js-after" defer="1" data-cfasync="" async="">wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after</script> <template id="FEvdDv3tRNGmJI2zFFK2"></template> <script type="bv_inline_delayed_js" bv_unique_id="SLR090b9kfecmexGHdCF" id="contact-form-7-js-before" defer="1" data-cfasync="" async="">var wpcf7 = { "api": { "root": "https:\/\/www.thebrainalytics.com\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; //# sourceURL=contact-form-7-js-before</script> <template id="4R3dJW3UZl1KRTglij0C"></template> <template id="aecH2cl1G1eHXqEM1s33"></template> <template id="45UwJ8wjDUIPiqzKKnxy"></template> <template id="SKaXKzrH34jiKrCxPwhU"></template> <template id="WnhqMw97awmnQKwRjsCi"></template> <template id="jrxCcZr9Y2fOevOhY7cE"></template> <template id="KW7PHiJOeC2qx4nbmRr5"></template> <template id="oisBq4wVN5gQrDp6z5Rc"></template> <template id="VK5O36YxhRu28RlpId0p"></template> <template id="Vk9o4K9QUaDY6Jy1QJCN"></template> <template id="879n8Kq6u7BOMxP4ZNU7"></template> <template id="aY89nix7e7sE1MnDImPH"></template> <template id="xuwGUz9t0SUaU880UzQX"></template> <template id="Sy55mBC5tpYrKaIiCeNZ"></template> <script type="bv_inline_delayed_js" bv_unique_id="ycxoPT4rz2w76kvG75wC" id="wpcf7cf-scripts-js-extra" defer="1" data-cfasync="" async="">var wpcf7cf_global_settings = {"ajaxurl":"https://www.thebrainalytics.com/wp-admin/admin-ajax.php"}; //# sourceURL=wpcf7cf-scripts-js-extra</script> <template id="vaijy6xakQDdOGMpUGRq"></template> <template id="VIL0JDc0iytjNef0sFyJ"></template> <template id="mxPPcZ5priZmKnRpHYWx"></template> <script type="bv_inline_delayed_js" bv_unique_id="JQIiqFHYulrjGpnnmKBW" id="wpcf7-recaptcha-js-before" defer="1" data-cfasync="" async="">var wpcf7_recaptcha = { "sitekey": "6LfBZZAoAAAAAE4YaaPxFa_kPf_XikGgw-r-OVsq", "actions": { "homepage": "homepage", "contactform": "contactform" } }; //# sourceURL=wpcf7-recaptcha-js-before</script> <template id="NcgcxUtiEl2aUdfF1PVu"></template> <template id="vrCZsS23aArltTOwjBOF"></template> <template id="5Oc0vPOkUbBDgehFZnw2"></template> <template id="dC4evAFravOyi2YpDE2N"></template> <script type="bv_inline_delayed_js" bv_unique_id="744Es0Hrsfe0q2rzmGVW" id="thickbox-js-extra" defer="1" data-cfasync="" async="">var thickboxL10n = {"next":"Next \u003E","prev":"\u003C Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"https://www.thebrainalytics.com/wp-includes/js/thickbox/loadingAnimation.gif"}; //# sourceURL=thickbox-js-extra</script> <template id="1FuT789EFjSThSNYKMvG"></template> <template id="PAdUCOqtSqAgvGTx5TAO"></template> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.thebrainalytics.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}} </script> <script type="bv_inline_delayed_js" bv_unique_id="1e64yKqnf0ySDGPFbFPC" defer="1" data-cfasync="" async="">/*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://www.thebrainalytics.com/wp-includes/js/wp-emoji-loader.min.js</script> <script type="bv_inline_delayed_js" bv_unique_id="MW7qvgToPDprrzIU0LS8" defer="1" data-cfasync="" bv_inline_delayed="1" async=""></script> <script id="bv-override-listeners">var __defProp=Object.defineProperty;var __name=(target,value)=>__defProp(target,"name",{value,configurable:!0});function bv_override_browser_listener(target){var bv_og_add_event_listener=target.addEventListener,bv_og_remove_event_listener=target.removeEventListener;function bv_handle_event_listeners(type,listener,options){var handledEvents=["readystatechange","DOMContentLoaded","load","pageshow"],eventName=type;(!document.currentScript||!document.currentScript.hasAttribute("bv-exclude"))&&(eventName=handledEvents.indexOf(type)!==-1?"Airlift"+type:type),arguments[0]=eventName,bv_og_add_event_listener.apply(target,arguments)}__name(bv_handle_event_listeners,"bv_handle_event_listeners");function bv_handle_remove_event_listener(type,listener,options){var handledEvents=["readystatechange","DOMContentLoaded","load","pageshow"],eventName=type;(!document.currentScript||!document.currentScript.hasAttribute("bv-exclude"))&&(eventName=handledEvents.indexOf(type)!==-1?"Airlift"+type:type),arguments[0]=eventName,bv_og_remove_event_listener.apply(target,arguments)}__name(bv_handle_remove_event_listener,"bv_handle_remove_event_listener"),target.addEventListener=function(type,listener,options){bv_handle_event_listeners(type,listener,options)},target.removeEventListener=function(type,listener,options){bv_handle_remove_event_listener(type,listener,options)}}__name(bv_override_browser_listener,"bv_override_browser_listener"),bv_override_browser_listener(window),bv_override_browser_listener(document);function bv_override_property_listeners(target,eventType){if(!target||typeof target!="object"){console.error("bv_override_property_listeners: Invalid target",target);return}var airliftPropertyName="on"+eventType,existingDescriptor=Object.getOwnPropertyDescriptor(target,airliftPropertyName);if(existingDescriptor&&!existingDescriptor.configurable){console.warn("Cannot override "+airliftPropertyName+": property is not configurable");return}var bv_internalHandler=null,airliftEventName="Airlift"+eventType,bvWrapperFunction=__name(function(e){if(bv_internalHandler)try{bv_internalHandler(e)}catch(error){console.error("Error in "+airliftPropertyName+" handler:",error)}},"bvWrapperFunction");try{Object.defineProperty(target,airliftPropertyName,{get:__name(function(){return bv_internalHandler},"get"),set:__name(function(handler){if(handler!=null&&typeof handler!="function"){console.warn("Invalid handler for "+airliftPropertyName+", ignoring");return}handler?(bv_internalHandler||target.addEventListener(airliftEventName,bvWrapperFunction),bv_internalHandler=handler):(bv_internalHandler=null,target.removeEventListener(airliftEventName,bvWrapperFunction))},"set"),enumerable:!0,configurable:!0})}catch(error){console.error("Failed to override "+airliftPropertyName+":",error)}}__name(bv_override_property_listeners,"bv_override_property_listeners"),bv_override_property_listeners(window,"load"),bv_override_property_listeners(window,"pageshow"),bv_override_property_listeners(document,"DOMContentLoaded"),bv_override_property_listeners(document,"readystatechange");function bv_override_document_write(){var bv_original_write=document.write,bv_original_writeln=document.writeln;function bv_handle_document_write(scriptElement,content){try{if(content==null)return;if(content=String(content),scriptElement&&scriptElement.hasAttribute("bv-exclude"))return bv_original_write.call(document,content);var container=null;scriptElement&&scriptElement.documentWriteContainer?container=scriptElement.documentWriteContainer:(container=document.createElement("span"),scriptElement&&(scriptElement.documentWriteContainer=container)),container.innerHTML+=content;var insertPoint=scriptElement||document.currentScript;if(!container.parentNode)if(insertPoint&&insertPoint.parentNode)insertPoint.parentNode.insertBefore(container,insertPoint.nextSibling);else if(document.body)document.body.appendChild(container);else{console.warn("document.body not ready for document.write, deferring"),typeof window<"u"&&window.addEventListener("DOMContentLoaded",function(){document.body&&!container.parentNode&&document.body.appendChild(container)});return}var tempDiv=document.createElement("span");tempDiv.innerHTML=content;var scriptsInContent=tempDiv.querySelectorAll("script");scriptsInContent.length>0&&scriptsInContent.forEach(function(oldScript){try{var newScript=document.createElement("script"),attributes=oldScript.getAttributeNames();attributes.forEach(function(attr){try{newScript.setAttribute(attr,oldScript.getAttribute(attr))}catch{console.log("Not able to set Attribute:")}}),newScript.async=!1,!oldScript.src&&oldScript.textContent&&(newScript.textContent=oldScript.textContent),newScript.setAttribute("bv-document-write",""),setTimeout(function(){try{insertPoint&&insertPoint.parentNode?insertPoint.parentNode.insertBefore(newScript,insertPoint.nextSibling):document.head&&document.head.appendChild(newScript)}catch(error){console.error("Error inserting document.write script:",error)}},0)}catch(error){console.error("Error processing document.write script:",error)}})}catch(error){console.error("Error in document.write handler:",error);try{bv_original_write.call(document,content)}catch(e){console.error("Fallback document.write also failed:",e)}}}__name(bv_handle_document_write,"bv_handle_document_write"),document.write=function(content){bv_handle_document_write(document.currentScript,content)},document.writeln=function(content){bv_handle_document_write(document.currentScript,content+` `)}}__name(bv_override_document_write,"bv_override_document_write"),bv_override_document_write(); </script> <template id=d6fe9c24159ed4a27d224d91c70f8fdc></template> <script id="bv-dynamic-image-lazyload" data-cfasync="false" bv-exclude="true">var __defProp=Object.defineProperty;var __name=(target,value)=>__defProp(target,"name",{value,configurable:!0});var BV_IS_RESIZE_ENABLED=!0,BV_IMAGES_NOT_TO_RESIZE=[],BV_DEBUG_MODE=!1;function bvDebugLog(...args){BV_DEBUG_MODE&&console.log(...args)}__name(bvDebugLog,"bvDebugLog");function getImageDeviceName(resized_infos_str,dimensions){let device_width=window.outerWidth;if(resized_infos_str){const device_size_infos=resized_infos_str.split(";");for(const device_info of device_size_infos){const[device_name,resized_dim]=device_info.split(":"),[width_str,height_str]=resized_dim.split("*"),width=parseInt(width_str,10),height=parseInt(height_str,10);if(dimensions.width<=width&&dimensions.height<=height&&device_width<=width)return device_name}return""}return device_width<=480?"bv_resized_mobile":device_width<=820?"bv_resized_ipad":device_width<=1536?"bv_resized_desktop":""}__name(getImageDeviceName,"getImageDeviceName");function isWebpSupported(){var elem=document.createElement("canvas");return elem.getContext&&elem.getContext("2d")?elem.toDataURL("image/webp").indexOf("data:image/webp")==0:!1}__name(isWebpSupported,"isWebpSupported");function getExtension(url){return url.split(".").pop().toLowerCase().split("?")[0]}__name(getExtension,"getExtension");function getNewImageUrlSVG(url,webp_status,encoded_url,dimensions){let url_and_query_string=url.split("?"),new_url=url_and_query_string[0],query_string=url_and_query_string[1];var shouldResize=BV_IS_RESIZE_ENABLED&&!BV_IMAGES_NOT_TO_RESIZE.some(pattern=>new_url.includes(pattern));if(shouldResize){let resized_infos=get_bv_identifier(encoded_url,"bv-resized-infos"),device_name=getImageDeviceName(resized_infos,dimensions);if(device_name!=""){let img_ext=getExtension(new_url);new_url+="."+device_name+"."+img_ext}}return webp_status&&(new_url+=".bv.webp"),query_string&&(new_url+=`?${query_string}`),new_url}__name(getNewImageUrlSVG,"getNewImageUrlSVG");function get_bv_identifier(property,attr_identifier="bv-identifer"){let a=null;try{a=property.match(/.*?base64,(.*?)"/)}catch(error){bvDebugLog(error)}if(!a||!a[1])try{a=property.match(/.*?base64,(.*)/)}catch(error){bvDebugLog(error)}if(a&&a[1]){let b=null;if(attr_identifier=="bv-identifer"?b=atob(a[1]).match(/.*?bv-identifer="(.*?)"/):attr_identifier=="bv-bg-style"?b=atob(a[1]).match(/.*?bv-bg-style="(.*?)"/):attr_identifier=="bv-resized-infos"&&(b=atob(a[1]).match(/.*?bv-resized-infos="(.*?)"/)),b&&b[1])return attr_identifier=="bv-bg-style"||attr_identifier=="bv-resized-infos"?atob(b[1]):b[1]}return!1}__name(get_bv_identifier,"get_bv_identifier");var bv_url_map=JSON.parse('{"0":"https:///wp-content/uploads/al_opt_content/IMAGE/www.thebrainalytics.com/wp-content/themes/bione/assets/img/icons/d_arrow.png?bv_host=www.thebrainalytics.com","1":"https:///wp-content/uploads/al_opt_content/IMAGE/www.thebrainalytics.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png?bv_host=www.thebrainalytics.com","2":"https:///wp-content/uploads/al_opt_content/IMAGE/www.thebrainalytics.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png?bv_host=www.thebrainalytics.com","3":"https:///wp-content/uploads/al_opt_content/IMAGE/www.thebrainalytics.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png?bv_host=www.thebrainalytics.com","4":"https:///wp-content/uploads/al_opt_content/IMAGE/www.thebrainalytics.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png?bv_host=www.thebrainalytics.com"}');const bvObservedNodesWithCounter=new Map,bv_webp_status=isWebpSupported();function bvObserveImgNode(node){const bv_counter=bvObservedNodesWithCounter.get(node)||0;bv_counter<50&&(bvObservedNodesWithCounter.set(node,bv_counter+1),other_image_observer.observe(node),bvDebugLog("NodeP with backgroundImage :",node))}__name(bvObserveImgNode,"bvObserveImgNode");function set_iframe_element_src_v2(iframe_element){let src_value=iframe_element.getAttribute("bv-data-src");src_value?(src_value.includes("autoplay=1")&&(src_value+="&mute=1"),iframe_element.setAttribute("src",src_value)):bvDebugLog("IFRAME_SRC_NOT_FOUND : "+entry)}__name(set_iframe_element_src_v2,"set_iframe_element_src_v2");function handleOtherImages(entries){entries.map(entry2=>{if(entry2.isIntersecting){const computedStyle=getComputedStyle(entry2.target),background=computedStyle.getPropertyValue("background")||"none",backgroundImage=computedStyle.getPropertyValue("background-image")||"none";let property_value=null,property_type=null;if(backgroundImage!=="none"&&backgroundImage.match(/url\(/)?(property_value=backgroundImage,property_type="background-image"):background!=="none"&&background.match(/url\(/)&&(property_value=background,property_type="background"),property_value){let bv_bg_style=get_bv_identifier(property_value,"bv-bg-style"),url_identifier=get_bv_identifier(property_value);if(url_identifier){let new_url=bv_url_map[url_identifier];if(new_url){const regex=/url\(['"]?(data:image.*?)['"]?\)/g;if(bv_bg_style&&bv_bg_style.length>0){for(;(match=regex.exec(bv_bg_style))!==null;){let new_img_url=getNewImageUrlSVG(new_url,bv_webp_status,property_value,entry2.target.getBoundingClientRect());bv_bg_style=bv_bg_style.replace(match[1],new_img_url)}let new_bv_bg_style=entry2.target.getAttribute("style")||"";new_bv_bg_style=new_bv_bg_style+(new_bv_bg_style?";":"")+(bv_bg_style||""),entry2.target.setAttribute("style",new_bv_bg_style)}else{for(;(match=regex.exec(property_value))!==null;){let new_img_url=getNewImageUrlSVG(new_url,bv_webp_status,property_value,entry2.target.getBoundingClientRect());property_value=property_value.replace(match[1],new_img_url)}entry2.target.style.setProperty(property_type,property_value,"important")}}}}bvObservedNodesWithCounter.delete(entry2.target),other_image_observer.unobserve(entry2.target)}})}__name(handleOtherImages,"handleOtherImages");function handleIframesV2(entries){entries.map(entry2=>{entry2.isIntersecting&&(set_iframe_element_src_v2(entry2.target),iframe_observer_v2.unobserve(entry2.target))})}__name(handleIframesV2,"handleIframesV2");const bvCheckNode=__name((node,currentLevel=1,maxLevel=1/0)=>{if(node.nodeType===1){const className=node.getAttribute("class");if(node.nodeName==="IFRAME"&&typeof className=="string"&&className.includes("bv-lazyload-iframe"))iframe_observer_v2.observe(node);else{const computedStyle=getComputedStyle(node),background=computedStyle.getPropertyValue("background")||"none",backgroundImage=computedStyle.getPropertyValue("background-image")||"none";backgroundImage!=="none"&&backgroundImage.match(/url\(/)?get_bv_identifier(backgroundImage)&&bvObserveImgNode(node):background!=="none"&&background.match(/url\(/)?get_bv_identifier(background)&&bvObserveImgNode(node):typeof className=="string"&&className.includes("bv-lazyload-bg-style")?bv_style_observer.observe(node):typeof className=="string"&&className.includes("bv-lazyload-tag-img")?img_observer.observe(node):typeof className=="string"&&className.includes("bv-lazyload-picture")&&picture_lazy_observer.observe(node)}}currentLevel<maxLevel&&node.childNodes.length&&node.childNodes.forEach(childNode=>{bvCheckNode(childNode,currentLevel+1,maxLevel)})},"bvCheckNode");function bv_handle_mutations(mutations){mutations.forEach(mutation=>{if(mutation.type==="childList"&&mutation.addedNodes.length)mutation.addedNodes.forEach(node=>{setTimeout(function(){bvCheckNode(node)},0)});else if(mutation.type==="attributes"){const targetNode=mutation.target,attributeName=mutation.attributeName,attributeValue=targetNode.getAttribute(attributeName);if(attributeName==="style"&&targetNode.style.backgroundImage!==mutation_observer.prevBackgroundImage){const computedStyle=getComputedStyle(targetNode),background=computedStyle.getPropertyValue("background")||"none",backgroundImage=computedStyle.getPropertyValue("background-image")||"none";backgroundImage!=="none"&&backgroundImage.match(/url\(/)?get_bv_identifier(backgroundImage)&&bvObserveImgNode(targetNode):background!=="none"&&background.match(/url\(/)&&get_bv_identifier(background)&&bvObserveImgNode(targetNode)}else attributeName==="class"&&setTimeout(function(){bvCheckNode(targetNode)},0)}})}__name(bv_handle_mutations,"bv_handle_mutations");function handle_mod_key_nodes(){let node_elements=document.querySelectorAll("[bv-img-mod-key]");for(let i=0;i<node_elements.length;i++){let element=node_elements[i],target_key=element.getAttribute("bv-img-mod-key"),mod_url=element.getAttribute(target_key);if(mod_url){let url_identifier=get_bv_identifier(mod_url);if(url_identifier){let old_url=bv_url_map[url_identifier];if(old_url){let dimensions=element.getBoundingClientRect(),new_img_url=getNewImageUrlSVG(old_url,bv_webp_status,mod_url,dimensions);element.setAttribute(target_key,new_img_url)}}}}}__name(handle_mod_key_nodes,"handle_mod_key_nodes");function bvRemoveEventListeners(){for(const event of bv_lazyload_events)window.removeEventListener(event,handleLazyloadedStyleImages)}__name(bvRemoveEventListeners,"bvRemoveEventListeners");function handleLazyloadedStyleImages(){setTimeout(function(){bvRemoveEventListeners()},0),document.querySelectorAll("body *").forEach(_element=>{setTimeout(function(){bvCheckNode(_element,1,1)},0)})}__name(handleLazyloadedStyleImages,"handleLazyloadedStyleImages"),handle_mod_key_nodes();let other_image_observer,iframe_observer_v2,mutation_observer;var bvDynamicImageObserverOptions={rootMargin:"200px 0px",threshold:.01};"IntersectionObserver"in window&&(other_image_observer=new IntersectionObserver(handleOtherImages,bvDynamicImageObserverOptions),iframe_observer_v2=new IntersectionObserver(handleIframesV2,bvDynamicImageObserverOptions)),"MutationObserver"in window&&(mutation_observer=new MutationObserver(bv_handle_mutations),mutation_observer.prevBackground="",mutation_observer.prevBackgroundImage="",mutation_observer.observe(document.body,{childList:!0,subtree:!0,attributes:!0,characterData:!0})),"IntersectionObserver"in window&&"MutationObserver"in window&&window.addEventListener("load",event=>{for(const event2 of bv_lazyload_events)window.addEventListener(event2,handleLazyloadedStyleImages,{once:!0})}); </script> <script id="bv-rename-images" type="text/javascript" data-cfasync="false" bv-exclude="true">var __defProp=Object.defineProperty;var __name=(target,value)=>__defProp(target,"name",{value,configurable:!0});const IMAGE_URL_ATTRIBUTES=["data-src","data-lazy-original","data-lazy-src","data-lazysrc","data-lazysrcset","data-lazy-srcset","data-envira-src","data-srcset","bv-data-src","bv-data-srcset","data-large_image","data-depicter-src","data-depicter-srcset","data-orig-src"],IMAGE_EXTENSIONS=["jpg","jpeg","png","gif","svg","jpe","webp","avif"],BV_CDN_URL="",BV_SITE_OPT_PATH="al_opt_content";var BV_IS_RESIZE_ENABLED=!0,BV_IMAGES_NOT_TO_RESIZE=[],BV_IMAGE_OPTIMIZATION_FORMAT="webp";function isValidUrl(url){return!!/^https?:\/\//i.test(url)}__name(isValidUrl,"isValidUrl");function isImage(url){let img_ext=getExtension(url);return!!IMAGE_EXTENSIONS.includes(img_ext)}__name(isImage,"isImage");function getImageDeviceName(resized_infos_str,dimensions){let device_width=window.outerWidth;if(resized_infos_str){const device_size_infos=resized_infos_str.split(";");for(const device_info of device_size_infos){const[device_name,resized_dim]=device_info.split(":"),[width_str,height_str]=resized_dim.split("*"),width=parseInt(width_str,10),height=parseInt(height_str,10);if(dimensions.width<=width&&dimensions.height<=height&&device_width<=width)return device_name}return""}return device_width<=480?"bv_resized_mobile":device_width<=820?"bv_resized_ipad":device_width<=1536?"bv_resized_desktop":""}__name(getImageDeviceName,"getImageDeviceName");function isWebpSupported(){var elem=document.createElement("canvas");return elem.getContext&&elem.getContext("2d")?elem.toDataURL("image/webp").indexOf("data:image/webp")==0:!1}__name(isWebpSupported,"isWebpSupported");function getImageOptimizationFormat(){var format=(BV_IMAGE_OPTIMIZATION_FORMAT||"webp").toLowerCase();return format==="avif"?"avif":"webp"}__name(getImageOptimizationFormat,"getImageOptimizationFormat");function getImageOptimizationSuffix(){return".bv."+getImageOptimizationFormat()}__name(getImageOptimizationSuffix,"getImageOptimizationSuffix");function isAvifSupported(callback){var avif=new Image;avif.onload=function(){callback(avif.width>0&&avif.height>0)},avif.onerror=function(){callback(!1)},avif.src="data:image/avif;base64,AAAAHGZ0eXBhdmlmAAAAAG1pZjFhdmlmbWlhZgAAARdtZXRhAAAAAAAAACFoZGxyAAAAAAAAAABwaWN0AAAAAAAAAAAAAAAAAAAAAA5waXRtAAAAAAABAAAANGlsb2MAAAAAREAAAgABAAAAAAE7AAEAAAAAAAAAGAACAAAAAAFTAAEAAAAAAAAAvgAAADhpaW5mAAAAAAACAAAAFWluZmUCAAAAAAEAAGF2MDEAAAAAFWluZmUCAAABAAIAAEV4aWYAAAAAVmlwcnAAAAA4aXBjbwAAAAxhdjFDgQAMAAAAABRpc3BlAAAAAAAAAAEAAAABAAAAEHBpeGkAAAAAAwgICAAAABZpcG1hAAAAAAAAAAEAAQOBAgMAAAAaaXJlZgAAAAAAAAAOY2RzYwACAAEAAQAAAN5tZGF0EgAKCBgABggIaDQgMgoYAAAAQAX172ToAAAABkV4aWYAAElJKgAIAAAABgASAQMAAQAAAFYAAAAbAQUAAQAAAF4AAAAoAQMAAQAAAAIAAAATAgMAAQAAAAEAAABphwQAAQAAAGYAAAAAAAAAOGMAAOgDAAA4YwAA6AMAAAYAAJAHAAQAAAAwMjEwAZEHAAQAAAABAgMAAKAHAAQAAAAwMTAwAaADAAEAAAD//wAAAqAEAAEAAAABAAAAA6AEAAEAAAABAAAAAAAAAA=="}__name(isAvifSupported,"isAvifSupported");function getImageOptimizationFormatSupport(callback){getImageOptimizationFormat()==="avif"?isAvifSupported(callback):callback(isWebpSupported())}__name(getImageOptimizationFormatSupport,"getImageOptimizationFormatSupport");function getExtension(url){return url.split("?")[0].split(".").pop().toLowerCase()}__name(getExtension,"getExtension");function getNewImageUrlQuery(url,image_format_status,dimensions){let url_and_query_string=url.split("?"),new_url=url_and_query_string[0],query_string=url_and_query_string[1];if(!image_format_status)return query_string?url_and_query_string[0]+`?${query_string}`:url_and_query_string[0];let params=new URLSearchParams(query_string),resized_infos=params.get("bv-resized-infos");params.delete("bv-resized-infos"),query_string=params.toString();var shouldResize=BV_IS_RESIZE_ENABLED&&!BV_IMAGES_NOT_TO_RESIZE.some(pattern=>new_url.includes(pattern));if(shouldResize){let device_name=getImageDeviceName(resized_infos,dimensions),img_ext=getExtension(new_url);device_name!=""&&(new_url+="."+device_name+"."+img_ext)}return new_url+=getImageOptimizationSuffix(),query_string&&(new_url+=`?${query_string}`),new_url}__name(getNewImageUrlQuery,"getNewImageUrlQuery");function isOurCdnImage(url){const hasCdnUrl=typeof BV_CDN_URL=="string"&&BV_CDN_URL.length>0,hasSiteOptPath=typeof BV_SITE_OPT_PATH=="string"&&BV_SITE_OPT_PATH.length>0;return!!(hasCdnUrl&&url.includes(BV_CDN_URL)||hasSiteOptPath&&url.includes(BV_SITE_OPT_PATH))}__name(isOurCdnImage,"isOurCdnImage");function canChangeUrl(url){return getExtension(url)==="svg"||url.includes("data:image")?!1:!!isOurCdnImage(url)}__name(canChangeUrl,"canChangeUrl");function handleNodeElements(node_elements,img_url_attrs,webp_status){node_elements.forEach(node_element=>{img_url_attrs.forEach(attr=>{flag=!1,node_element.hasAttribute(attr)&&(attr_val=node_element.getAttribute(attr),new_val="",attr_val.split(",").forEach(src=>{let src_parts=src.trim().split(" "),clean_url=src_parts.shift();if(flag?new_val+=",":flag=!0,isValidUrl(clean_url)&&isImage(clean_url))if(canChangeUrl(clean_url)){let new_url=getNewImageUrlQuery(clean_url,webp_status,node_element.getBoundingClientRect());new_val+=[new_url].concat(src_parts).join(" ")}else new_val+=src;else new_val+=src}),node_element.setAttribute(attr,new_val))})})}__name(handleNodeElements,"handleNodeElements");function handleTagWithStyle(tag_elements_with_style,webp_status){tag_elements_with_style.forEach(tag_element=>{let img_url=tag_element.getAttribute("bv-style-url");if(img_url&&isValidUrl(img_url)&&isImage(img_url)&&canChangeUrl(img_url)){let new_img_url=getNewImageUrlQuery(img_url,webp_status,tag_element.getBoundingClientRect()),style_attr_val=tag_element.getAttribute("bv-data-style");style_attr_val&&(new_style_val=style_attr_val.replace(img_url,new_img_url),tag_element.setAttribute("bv-data-style",new_style_val))}})}__name(handleTagWithStyle,"handleTagWithStyle"),getImageOptimizationFormatSupport(function(image_format_status){let img_tags=document.querySelectorAll(".bv-tag-attr-replace");handleNodeElements(img_tags,IMAGE_URL_ATTRIBUTES,image_format_status);let tag_elements_with_style=document.querySelectorAll(".bv-style-attr-replace");handleTagWithStyle(tag_elements_with_style,image_format_status)}); </script> </body> </html> <!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net. Template: 697cfb275612b7c854066b73. Config Timestamp: 2026-01-30 18:40:33 UTC, Cached Timestamp: 2026-06-04 20:40:57 UTC -->