Supporting Ashgate Hospice

gravatar
By MPC
 · 
July 17, 2026
 · 
2 min read
Featured Image

We were delighted to receive a thank-you letter from the team at Ashgate Hospice following the recent work we carried out on their new office fit out.

It is always rewarding to know that our work has made a positive difference, but receiving such a thoughtful message from an organisation that plays such an important role in the local community made this project feel particularly special.

A Project with Purpose
Ashgate Hospice provides vital care and support for people across North Derbyshire, and we were proud to contribute to a working environment that supports the people behind those services.

Office fit out projects are about more than creating a practical workspace. They are about understanding how a space needs to work for the people using it every day, and delivering a finish that is functional, professional and built around their needs.

Recognition That Means a Lot
The kind words we received from Ashgate Hospice were greatly appreciated by everyone involved. For our team, feedback like this is a reminder of the care, attention to detail and pride that goes into every project, no matter the size.

We would like to thank the staff at Ashgate Hospice for taking the time to write to us, and for trusting us to be part of their office improvement works.

Delivering Quality Spaces for Local Organisations
Projects like this reflect what we value most: working closely with clients, delivering reliable workmanship and helping create spaces that support the way organisations operate.

We are proud to have supported Ashgate Hospice and look forward to continuing to work with businesses, charities and organisations across the region on projects that make a meaningful difference.

Comments

No Comments.

MPC Systems (North) Ltd
Unit 11, Network Centre
Midland Way
Barlborough
Chesterfield
S43 4WW

Telephone: 01246 819 970

QUICK LINKS

OUR POLICIES

Logos-2

Copyright © 2026 MPC Systems.

Website design & build by NU Logo

All rights reserved.

document.querySelector('.smp-nav-lottie').addEventListener('click', function() { window.location.href = 'https://yourlink.com'; }); document.querySelector('.smp-nav-lottie').addEventListener('click', () => { console.log('Lottie clicked'); }); document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { var container = document.getElementById('lottie-container'); var animation = lottie.loadAnimation({ container: container, renderer: 'svg', loop: false, autoplay: true, path: 'https://www.mpcsystems.co.uk/wp-content/uploads/2025/02/MPC-Animated-Logo-1.json' }); }, 100); // Delay for Safari }); window.addEventListener('orientationchange', function() { document.body.style.paddingTop = document.querySelector('.navbar').offsetHeight + 'px'; }); document.addEventListener('DOMContentLoaded', function() { const images = document.querySelectorAll('.image-hover-zoom'); document.addEventListener('DOMContentLoaded', function() { const images = document.querySelectorAll('.image-hover-zoom'); document.addEventListener('DOMContentLoaded', function() { const images = document.querySelectorAll('.image-hover-zoom'); document.addEventListener('DOMContentLoaded', () => { // Ensure that the images are loaded before starting the observer const images = document.querySelectorAll('.image-hover-zoom'); // Select all image containers // IntersectionObserver to detect when the image enters the viewport const options = { root: null, rootMargin: '0px 0px -50% 0px', // Trigger when 50% of the image is in the viewport threshold: 0 }; const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('is-visible'); observer.unobserve(entry.target); // Stop observing after it's visible } }); }, options); // Observe each image for visibility images.forEach(image => { observer.observe(image); }); // Fallback for mobile: Detect scrolling and trigger class based on position if (window.innerWidth <= 768) { window.addEventListener('scroll', function() { images.forEach(image => { const rect = image.getBoundingClientRect(); if (rect.top < window.innerHeight * 0.5 && rect.bottom > 0) { image.classList.add('is-visible'); } else { image.classList.remove('is-visible'); } }); }); } });