Specialised Training & Medical Emergency Courses

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.

  • African american woman holding purple ribbon awareness smiling happy pointing with hand and finger
  • Young hispanic woman smiling happy holding purple ribbon walking at the city.
  • <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>