First Aid Courses

CPTC Ltd provides a range of First Aid training courses throughout London and home counties. We deliver on-site training, at your convenience.

Our First Aid courses are accredited and HSE approved. They consist of both theoretical knowledge and practical sessions that are designed to develop ability and most importantly practical confidence and competence.

Thought the course was well presented, lots of opportunities for practice. The pace of the course was good, with lots of opportunities to ask questions, and work in teams.

I’ve been working in care for the past 16 years. I have never had a First Aid training as thorough as this provided by Stella. Thank you it was fantastic!

  • <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>