0
0
Cart1item

Cart

HomeContact us

Contact us

It's important for us to guarantee you the best rental and sales service. That's why one-to-one support is a big part of Phat X. Contact us by phone or email to get help from our qualified team.

Monday - Friday 10:00am - 6:00pm
Saturday 10:00am - 4:00pm
Sunday By appointment

I've placed an order already

    I haven't placed an order yet

      const observer = new MutationObserver(function () { const el = document.querySelector('header.mobile-false'); if (el) { el.classList.remove('mobile-false'); observer.disconnect(); } }); // Start observing after DOM is ready document.addEventListener("DOMContentLoaded", function () { observer.observe(document.body, { childList: true, subtree: true }); // Run once immediately in case element already exists const el = document.querySelector('header.mobile-false'); if (el) { el.classList.remove('mobile-false'); observer.disconnect(); } });