Vibia Support Portfolio

At every moment of the process, we are by your side.

From Project Support to Usage

Creating scenes of wellbeing requires guidance and support throughout the entire project journey (end-to-end). From design and composition through to installation and end-user interaction.

View services

Vibia

Follow us

Vibia is a global lighting company based in Barcelona

Light is at the foundation of space design. Alongside architects, interior designers, lighting designers, engineers and dealers, we aim to improve the world through a single aspiration: creating better spaces to live.

Vibia's specialised team is at your disposal to assist you in creating a complete atmosphere design project.

Lighting &
Wellbeing Studio

Request support

Consult about Vibia's training program.

Atmosphere Design Content and Professional Training

New Approach to
Atmosphere Design

· Periodic online training sessions.
· In-company training.

Certification Programs 
COMING SOON

· Certificate in Emotional Atmosphere Design for project designers.
· Certificate for Vibia Authorised Installers to provide local support.

Request more info

Events for professionals

Technical Support Services

Our technical service team is available to assist you with any post-sales queries you may have,

Request support

Installation process

Control system implementation

Maintenance

Online Professional Tools

Support for our digital tools designed for professionals

- Web: Professional Area
- Online product configurators

Request assistance

Sales Team Support

Direct contact with the Vibia representative in your area to assist you with your project or whatever you may need.

  • Selection of the appropriate product and customisation. 
  • Creation of project moodboards by scenes. 
  • Use of Vibia's online professional tools (Website, App, etc.).
Request sales meeting

Get a personalised quotation for your projects

Ask for 
a quote

Request assistance with additional product details

Product 
information

Assistance with lighting projects adapting to the different scenes according to the specific use of a space as it evolves over time.

Scenes design

Project design drawing and renderings

Control system approach

Lighting 
calculation

Services including

// Function to handle intersection function handleIntersect(entries, observer) { entries.forEach(entry => { if (entry.isIntersecting) { // Add class to make the section visible entry.target.classList.add('visible'); // Optionally stop observing the current target if only need animation once observer.unobserve(entry.target); } }); } // Options for the observer (we can adjust the threshold if needed) const options = { threshold: 0.1 // Trigger when 10% of the element is visible }; // Create the intersection observer const observer = new IntersectionObserver(handleIntersect, options); // Observe each section with the class 'hidden-section' document.querySelectorAll('.hidden-section').forEach(section => { observer.observe(section); }); // Add CSS for the hidden and visible states const style = document.createElement('style'); style.innerHTML = ` .hidden-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; } .hidden-section.visible { opacity: 1; transform: translateY(0); } `; document.head.appendChild(style);