Disclaimer

Investment Advisory Services are offered through Manzil Investment Advisors, LLC ("Manzil Invest"), a registered investment adviser. Securities are offered and sold through Alpaca Securities.


Manzil Invest is a registered investment adviser located in Dallas, TX. Manzil Invest may only transact business in those states in which it is registered or qualifies for an exemption or exclusion from registration requirements.

Manzil Invest’s website is limited to the dissemination of general information pertaining to its advisory services, together with access to additional investment-related information, publications, and links. Accordingly, the publication of Manzil Invest’s website on the Internet should not be construed by any consumer and/or prospective client as Manzil Invest’s solicitation to effect, or attempt to effect transactions in securities, or the rendering of personalized investment advice for compensation, over the Internet.


Any subsequent, direct communication by Manzil Invest with a prospective client shall be conducted by a representative that is either registered or qualifies for an exemption or exclusion from registration in the state where the prospective client resides. For information pertaining to the registration status of Manzil Invest, please contact the state securities regulators for those states in which Manzil Invest maintains a registration filing. A copy of Manzil Invest’s current written disclosure statement discussing Manzil Invest’s business operations, services, and fees is available at the SEC’s investment adviser public information website – www.adviserinfo.sec.gov or from Manzil Invest upon written request.


Manzil Invest does not make any representations or warranties as to the accuracy, timeliness, suitability, completeness, or relevance of any information prepared by any unaffiliated third party, whether linked to Manzil Invest’s website or incorporated herein, and takes no responsibility therefor. All such information is provided solely for convenience purposes only and all users thereof should be guided accordingly. This website and information are provided for guidance and information purposes only. Investments involve risk and unless otherwise stated, are not guaranteed.


This website and information are not intended to provide investment, tax, or legal advice.


Apple, the Apple logo, Apple Pay, Apple Watch, iPad, iPhone, iTunes, Mac, Safari, and Touch ID are trademarks of Apple Inc., registered in the U.S. and other countries. Android, Google Play and the Google Play logo are trademarks of Google LLC.


Manzil bears no responsibility for inaccuracies in the calculations or for the payment of purification itself.

(function(){ var p = window.location.pathname; var sp = new URLSearchParams(window.location.search); // ---- Region config ---- var REGION_PREFIX = { US: "", CA: "/ca", GLOBAL: "/global" }; var REGION_LABEL = { US: "US", CA: "Canada", GLOBAL: "International" }; var REGION_ORDER = ["US", "CA", "GLOBAL"]; // Locales Framer serves ahead of the region prefix, e.g. /fr/ca/halal-homes. // Add new locale codes here as Framer adds them. var LOCALES = ["fr"]; // Pages excluded from all geo-redirect logic. // These pages are accessible globally at manzil.co/[page] regardless of country or IP. var excludedPaths = ["/careers", "/rates", "/ceo", "/ca/rates"]; // ---- Hard bail on any 404 page ---- // This is what breaks the loop: no matter what state the redirect logic is // in, once we're on an error page (/404, /fr/404, /ca/fr/404, /global/fr/404, // etc.) this script does nothing at all. if(/\/404(\/|$)/.test(p)){ return; } // ---- Hop-counter backstop ---- // Belt-and-suspenders: if some other combination of scripts still manages // to bounce a visitor back and forth, this trips after a few hops inside a // short window, clears the region cookie so we stop steering them, and // stands down instead of issuing another redirect. var HOP_KEY = "mzl_hops"; var HOP_WINDOW_MS = 4000; var HOP_LIMIT = 4; var hopLimitTripped = (function trackHops(){ var now = Date.now(); var raw = sessionStorage.getItem(HOP_KEY); var data; try { data = raw ? JSON.parse(raw) : null; } catch(e){ data = null; } if(!data || (now - data.ts) > HOP_WINDOW_MS){ data = { count: 0, ts: now }; } data.count++; data.ts = now; sessionStorage.setItem(HOP_KEY, JSON.stringify(data)); if(data.count > HOP_LIMIT){ document.cookie = "mzl_r=;path=/;max-age=0;SameSite=Lax"; console.error("mzl geo-redirect: hop limit exceeded on " + p + ", aborting redirect chain"); return true; } return false; })(); if(hopLimitTripped) return; // ---- Locale helpers ---- // Strip a leading locale segment before any region parsing happens, and // re-attach it whenever we build a target URL, so a locale prefix never // gets treated as an unrecognized region and re-prefixed. function parseLocale(path){ for(var i=0; i