Employers have a legal responsibility to provide safe workplaces for their employees, contractors and visitors to the premises.
Whether you are an Employer who wishes to make sure you comply or to raise awareness among your employees we can help.
I have acquired in-depth knowledge of Food Safety. The trainer was very knowledgeable & engaging. She was very thorough in the delivery of the course & ensured the training was of high quality.
I will be more confident to take action to prevent fire and carry out a risk assessment effectively.
My knowledge has been expanded and refreshed. I am now more familiar with individual responsibilities.
<script> // To enable code execution go to Bricks > Settings > Builder Access const card = '.fr-feature-card-echo' const featureCards = document.querySelectorAll(card); for (var i = 0; i < featureCards.length; i++) { const c = featureCards[i] const textSelector = `${card}__text` const cardText = c.querySelector(textSelector) const heading = c.querySelector(`${card}__heading > a`) const textHeight = cardText.offsetHeight; cardText.style.height = '1px'; c.addEventListener('mouseover', function() { this.querySelector(textSelector).style.height = textHeight + 'px'; this.querySelector(textSelector).style.opacity = '1'; }); c.addEventListener('mouseout', function() { this.querySelector(textSelector).style.height = '1px'; this.querySelector(textSelector).style.opacity = '0'; }); heading.addEventListener('focus', function() { c.querySelector(textSelector).style.height = textHeight + 'px'; c.querySelector(textSelector).style.opacity = '1'; }); heading.addEventListener('blur', function() { c.querySelector(textSelector).style.height = '1px'; c.querySelector(textSelector).style.opacity = '0'; }); } </script>