Corporate Office Branding

autodata hero

Autodata Solutions Company

Corporate Office Branding

Project Overview:
Autodata Solutions Company moved to a new location to allow their company room to grow. INPS manufactured the corporate logos and letters, lifestyle images, wall murals and privacy films for their new corporate office.

Challenge:
Autodata had a unique corporate colour that INPS needed to colour match.  Privacy films were to be branded and visible on both sides of the window. 

Solution:
At INPS we strive to meet the expectations of our customers. Colour matching was achieved by involving our engineering and ink mixing department. The end result was a three layered laminate on acrylic with shadow spaced letters.

The window film was vibrant, visible and legible on both sides of the window. This was attained by digitally printing the window film in two layers with an opaque film called FLEX-twin® set in between. The end result was a happy customer.

Project Details: Location: Autodata Solutions Company, London, Ontario

Scope of Project:

  • Project management
  • Design
  • Engineering
  • Fabrication
  • Window Film
  • 3M Fasara Film
  • Room identification
  • Printed privacy films
  • Corporate Name Signs
  • Lifestyle images
  • Custom logos & letters
  • 3D Letters and Logos
  • Acrylic Letters and Logos
autodata 1
autodata 2
autodata 3
document.addEventListener("DOMContentLoaded", () => { // Only run on touch-style devices (phones/tablets) const isTouch = window.matchMedia("(hover: none), (pointer: coarse)").matches; if (!isTouch) return; // Optional: narrow scope to your header if you want. // Example: const scope = document.querySelector("header"); const scope = document; // Common WordPress/Elementor submenu patterns const parentSelector = "li.menu-item-has-children > a, li.menu-item-has-children > .elementor-item"; // Close all open submenus inside scope const closeAll = () => { scope.querySelectorAll("li.menu-item-has-children.is-open").forEach((li) => { li.classList.remove("is-open"); const a = li.querySelector(":scope > a, :scope > .elementor-item"); if (a) a.setAttribute("aria-expanded", "false"); }); }; // Click/tap outside closes document.addEventListener("click", (e) => { // If the click is outside the menu area, close if (!e.target.closest(".elementor-nav-menu, .elementor-location-header, header")) { closeAll(); } }); // Make parent items toggle on first tap scope.querySelectorAll(parentSelector).forEach((link) => { link.addEventListener("click", (e) => { const li = e.currentTarget.closest("li.menu-item-has-children"); if (!li) return; const alreadyOpen = li.classList.contains("is-open"); // If submenu isn't open yet: open it and prevent navigation if (!alreadyOpen) { e.preventDefault(); e.stopPropagation(); // Close siblings/other open menus first (keeps things tidy) closeAll(); li.classList.add("is-open"); link.setAttribute("aria-expanded", "true"); return; } // If it's already open, allow the click to navigate normally (2nd tap) // (No preventDefault here) }); }); });