The following courses have all been designed to help train a wide variety of specialised training and medical emergency topics. Please select the course titles to see more information about each specific training module.
Our courses are competitively priced. Please get in touch to discuss your requirements.
Extremely clear delivery covering all topics to do with allergies/anaphylaxis and procedures from start to finish when someone has an allergy that’s chronic or fatal.
Everything was explained well. I feel like I can go back to work full of confidence.
<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>