Train The Trainer Courses

We deliver Train the Trainer courses and qualifications on-site at your venue.  We will discuss with you the equipment and systems used in your setting, so that the course is we deliver is tailor-made.  

How Does It Work?

Our Train the Trainer packages are completely flexible, but here are just two examples of how we might work with you to ensure that you have the appropriate skills, knowledge, and confidence to deliver successful learning.

The tutor was particularly good in explaining herself and incorporating members of the group. My second train the trainer, this one was more enjoyable.

I particularly liked Stella’s way of explaining and practical side of things. Stella was very professional and gave great ideas in order to train others ourselves.

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